summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2002-02-27 12:04:06 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2002-02-27 12:04:06 +0000
commit91a8adb6c5fc5fdd4056ee0e23a925a27f3d7ebf (patch)
tree7735c6995f0df624f3170b5cd5885eef5218390b /lib
parentfe143d9a28ddd7cc885e8def47d07669f1cee48f (diff)
downloadmailutils-91a8adb6c5fc5fdd4056ee0e23a925a27f3d7ebf.tar.gz
mailutils-91a8adb6c5fc5fdd4056ee0e23a925a27f3d7ebf.tar.bz2
Use PROTOTYPES to determine whether the compiler understands
function prototypes.
Diffstat (limited to 'lib')
-rw-r--r--lib/argcv.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/argcv.h b/lib/argcv.h
index fde6289ec..bb061d66b 100644
--- a/lib/argcv.h
+++ b/lib/argcv.h
@@ -28,7 +28,7 @@ extern "C" {
#endif
#ifndef __P
-# ifdef __STDC__
+# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
# define __P(args) args
# else
# define __P(args) ()

Return to:

Send suggestions and report system problems to the System administrator.