diff options
author | Werner Koch <[email protected]> | 1998-10-06 12:10:02 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 1998-10-06 12:10:02 +0000 |
commit | f04db5631158b3856ea11f300d02a03c7e15ede4 (patch) | |
tree | 6cd9c2416b65118f4da0aeceb6be2a7f1763e258 /tools/shmtest.c | |
parent | *** empty log message *** (diff) | |
download | gnupg-f04db5631158b3856ea11f300d02a03c7e15ede4.tar.gz gnupg-f04db5631158b3856ea11f300d02a03c7e15ede4.zip |
windoze version works again
Diffstat (limited to '')
-rw-r--r-- | tools/shmtest.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tools/shmtest.c b/tools/shmtest.c index 5d8e01910..fb336bd2e 100644 --- a/tools/shmtest.c +++ b/tools/shmtest.c @@ -19,6 +19,13 @@ #include "ttyio.h" #include "i18n.h" +#ifdef __MINGW32__ +int main( int argc, char **argv ) +{ + fprintf(stderr, "Sorry, not yet available for Windoze\n"); + exit(1); +} +#else static int serverpid = -1; @@ -186,4 +193,4 @@ main(int argc, char **argv) } - +#endif /* !__MINGW32__ */ |