1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

Add missing file and other changes.

This commit is contained in:
Werner Koch 2006-09-27 13:58:13 +00:00
parent f28d2d5c43
commit 3377456252
5 changed files with 143 additions and 19 deletions

View file

@ -28,8 +28,6 @@
#include <gpg-error.h> /* We need gpg_error_t. */
/* Common GNUlib includes (-I ../gl/). */
#include "strpbrk.h"
#include "strsep.h"
#include "vasprintf.h"
@ -196,13 +194,6 @@ ttyname (int fd)
};
#endif /* !HAVE_TTYNAME */
#ifndef HAVE_ISASCII
static inline int
isascii (int c)
{
return (((c) & ~0x7f) == 0);
}
#endif /* !HAVE_ISASCII */
/*-- Macros to replace ctype ones to avoid locale problems. --*/
#define spacep(p) (*(p) == ' ' || *(p) == '\t')