summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJohn Carr <jfc@mit.edu>1992-02-23 12:10:21 +0000
committerJohn Carr <jfc@mit.edu>1992-02-23 12:10:21 +0000
commitcd3db54173874248896e77603d72f357b500166d (patch)
treec0502d45d63d863ba0e4a009b8279189b25a87ca /src
parent134507c3afba9d199b8435dc8ff5c8cd5e6c9fbb (diff)
downloadkrb5-cd3db54173874248896e77603d72f357b500166d.tar.gz
krb5-cd3db54173874248896e77603d72f357b500166d.tar.xz
krb5-cd3db54173874248896e77603d72f357b500166d.zip
Make use of "const", "volatile", "void", and ANSI stdio configurable
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@2219 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r--src/include/krb5/stock/config.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/include/krb5/stock/config.h b/src/include/krb5/stock/config.h
index 73c505266..113066ec9 100644
--- a/src/include/krb5/stock/config.h
+++ b/src/include/krb5/stock/config.h
@@ -64,6 +64,10 @@ typedef int krb5_sigtype;
#define HAS_STDLIB_H
#endif
+#ifdef HasAnsiStdio
+#define ANSI_STDIO
+#endif
+
#ifdef ProvidePrototypes
#define KRB5_PROVIDE_PROTOTYPES
#endif
@@ -76,6 +80,18 @@ typedef int krb5_sigtype;
#define STDARG_PROTOTYPES
#endif
+#ifdef UseVoid
+#define HAS_VOID_TYPE
+#endif
+
+#ifdef UseConst
+#define HAS_ANSI_CONST
+#endif
+
+#ifdef UseVolatile
+#define HAS_ANSI_VOLATILE
+#endif
+
#ifdef Bitsize32
#ifdef Bitsize64
error: only one of BitsizeNN, please.