diff options
author | Werner Koch <[email protected]> | 1999-02-10 16:22:40 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 1999-02-10 16:22:40 +0000 |
commit | 9a4f506a18ed04f5dbd69d74ec0c35ade79e357a (patch) | |
tree | 07178f77cb23862b045b0edf8a2bc5ce188432cd /tools | |
parent | See ChangeLog: Sun Jan 24 18:16:26 CET 1999 Werner Koch (diff) | |
download | gnupg-9a4f506a18ed04f5dbd69d74ec0c35ade79e357a.tar.gz gnupg-9a4f506a18ed04f5dbd69d74ec0c35ade79e357a.zip |
See ChangeLog: Wed Feb 10 17:15:39 CET 1999 Werner Koch
Diffstat (limited to 'tools')
-rw-r--r-- | tools/bftest.c | 4 | ||||
-rw-r--r-- | tools/shmtest.c | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/tools/bftest.c b/tools/bftest.c index 0bfb4105e..edfb8e36a 100644 --- a/tools/bftest.c +++ b/tools/bftest.c @@ -22,7 +22,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> -#ifdef __MINGW32__ +#ifdef HAVE_DOSISH_SYSTEM #include <io.h> #include <fcntl.h> #endif @@ -67,7 +67,7 @@ main(int argc, char **argv) int n, size=4096; int algo; - #ifdef __MINGW32__ + #ifdef HAVE_DOSISH_SYSTEM setmode( fileno(stdin), O_BINARY ); setmode( fileno(stdout), O_BINARY ); #endif diff --git a/tools/shmtest.c b/tools/shmtest.c index 53637e174..1cfb9b4ed 100644 --- a/tools/shmtest.c +++ b/tools/shmtest.c @@ -19,10 +19,10 @@ #include "ttyio.h" #include "i18n.h" -#ifdef __MINGW32__ +#ifdef HAVE_DOSISH_SYSTEM int main( int argc, char **argv ) { - fprintf(stderr, "Sorry, not yet available for Windoze\n"); + fprintf(stderr, "Sorry, not yet available for DOSish systems\n"); exit(1); } #else @@ -193,4 +193,4 @@ main(int argc, char **argv) } -#endif /* !__MINGW32__ */ +#endif |