diff options
author | Werner Koch <wk@gnupg.org> | 2010-04-14 16:39:16 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2010-04-14 16:39:16 +0200 |
commit | 53c636c4c666ab27440fb4a866bf0ae32f0aa517 (patch) | |
tree | ac6d1e065b3f65bec63484d636c1ed0b19dbf8d1 /common/util.h | |
parent | Whole lot of changes to support CE. (diff) | |
download | gnupg2-53c636c4c666ab27440fb4a866bf0ae32f0aa517.tar.xz gnupg2-53c636c4c666ab27440fb4a866bf0ae32f0aa517.zip |
./autogen.sh --build-w32ce does now succeed.
Diffstat (limited to 'common/util.h')
-rw-r--r-- | common/util.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/common/util.h b/common/util.h index 159d66ee2..e197ea7a3 100644 --- a/common/util.h +++ b/common/util.h @@ -300,6 +300,10 @@ char *_gnupg_getenv (const char *name); /* See sysutils.c */ #define getenv(a) _gnupg_getenv ((a)) char *_gnupg_setenv (const char *name); /* See sysutils.c */ #define setenv(a,b,c) _gnupg_setenv ((a),(b),(c)) +int _gnupg_isatty (int fd); +#define gnupg_isatty(a) _gnupg_isatty ((a)) +#else +#define gnupg_isatty(a) isatty ((a)) #endif |