summaryrefslogtreecommitdiffstats
path: root/src/lib
diff options
context:
space:
mode:
authorEzra Peisach <epeisach@mit.edu>2001-04-12 16:03:36 +0000
committerEzra Peisach <epeisach@mit.edu>2001-04-12 16:03:36 +0000
commit1c3bdb494ee46d6758cb3037373d2ca1d3ef0adb (patch)
tree75db3e411845e05fdb46774aeb387c9a67f3e626 /src/lib
parenta37df686067e01183688657053a4ec2953fd5ab1 (diff)
downloadkrb5-1c3bdb494ee46d6758cb3037373d2ca1d3ef0adb.tar.gz
krb5-1c3bdb494ee46d6758cb3037373d2ca1d3ef0adb.tar.xz
krb5-1c3bdb494ee46d6758cb3037373d2ca1d3ef0adb.zip
* f_tables.h: Do not define const to nothing on platforms that
fail to define __STDC__ - let autoconf do this if necessary. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13174 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/crypto/des/ChangeLog5
-rw-r--r--src/lib/crypto/des/f_tables.h6
2 files changed, 5 insertions, 6 deletions
diff --git a/src/lib/crypto/des/ChangeLog b/src/lib/crypto/des/ChangeLog
index dc89e2c826..6a0926ef3b 100644
--- a/src/lib/crypto/des/ChangeLog
+++ b/src/lib/crypto/des/ChangeLog
@@ -1,3 +1,8 @@
+2001-04-12 Ezra Peisach <epeisach@mit.edu>
+
+ * f_tables.h: Do not define const to nothing on platforms that
+ fail to define __STDC__ - let autoconf do this if necessary.
+
2001-04-10 Ken Raeburn <raeburn@mit.edu>
* t_afss2k.c (do_it): Add cast to keep compiler quiet.
diff --git a/src/lib/crypto/des/f_tables.h b/src/lib/crypto/des/f_tables.h
index bbc0ccfefe..a8b477d4d4 100644
--- a/src/lib/crypto/des/f_tables.h
+++ b/src/lib/crypto/des/f_tables.h
@@ -14,12 +14,6 @@
#ifndef __DES_TABLES_H__
#define __DES_TABLES_H__ /* nothing */
-#ifndef const
-#if !defined(__STDC__) && !defined(_MSDOS) && !defined(_WIN32)
-#define const /* nothing */
-#endif
-#endif
-
/*
* These may be declared const if you wish. Be sure to change the
* declarations in des_tables.c as well.