diff options
author | Chris Metcalf <cmetcalf@tilera.com> | 2014-06-06 18:25:31 -0400 |
---|---|---|
committer | Chris Metcalf <cmetcalf@tilera.com> | 2014-06-06 18:25:31 -0400 |
commit | 4d3ae034b7c02b6a94e04ec7a32582379b6f4716 (patch) | |
tree | fa5b083d20e4052973b17e0e074c5ecdafbea250 /crypt/crypt-private.h | |
parent | 8540f6d2a74fe9d67440535ebbcfa252180a3172 (diff) | |
download | glibc-4d3ae034b7c02b6a94e04ec7a32582379b6f4716.tar glibc-4d3ae034b7c02b6a94e04ec7a32582379b6f4716.tar.gz glibc-4d3ae034b7c02b6a94e04ec7a32582379b6f4716.tar.bz2 glibc-4d3ae034b7c02b6a94e04ec7a32582379b6f4716.zip |
crypt: don't include ufc-crypt.h multiple times
The file has no inclusion guards, and contains typedefs that
cause errors when included multiple times with older (pre-C11)
compilers such as gcc 4.4.
Save the "#ifdef DOS" content to crypt-private.h even though
it's likely not particularly useful.
Diffstat (limited to 'crypt/crypt-private.h')
-rw-r--r-- | crypt/crypt-private.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/crypt/crypt-private.h b/crypt/crypt-private.h index ea46a7f949..b6a5e07b36 100644 --- a/crypt/crypt-private.h +++ b/crypt/crypt-private.h @@ -28,7 +28,16 @@ #include <features.h> #include <stdbool.h> +#ifndef DOS #include "ufc-crypt.h" +#else +/* + * Thanks to greg%wind@plains.NoDak.edu (Greg W. Wettstein) + * for DOS patches + */ +#include "pl.h" +#include "ufc.h" +#endif #include "crypt.h" /* crypt.c */ |