diff options
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/crypto/des/ChangeLog | 5 | ||||
| -rw-r--r-- | src/lib/crypto/des/f_tables.h | 6 |
2 files changed, 5 insertions, 6 deletions
diff --git a/src/lib/crypto/des/ChangeLog b/src/lib/crypto/des/ChangeLog index dc89e2c82..6a0926ef3 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 bbc0ccfef..a8b477d4d 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. |
