summaryrefslogtreecommitdiff
path: root/crypt
diff options
context:
space:
mode:
authorChris Metcalf <cmetcalf@tilera.com>2014-06-06 18:25:31 -0400
committerChris Metcalf <cmetcalf@tilera.com>2014-06-06 18:25:31 -0400
commit4d3ae034b7c02b6a94e04ec7a32582379b6f4716 (patch)
treefa5b083d20e4052973b17e0e074c5ecdafbea250 /crypt
parent8540f6d2a74fe9d67440535ebbcfa252180a3172 (diff)
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')
-rw-r--r--crypt/crypt-entry.c10
-rw-r--r--crypt/crypt-private.h9
-rw-r--r--crypt/crypt.c2
-rw-r--r--crypt/crypt_util.c11
4 files changed, 9 insertions, 23 deletions
diff --git a/crypt/crypt-entry.c b/crypt/crypt-entry.c
index 2a6e9504e3..f6444dfc14 100644
--- a/crypt/crypt-entry.c
+++ b/crypt/crypt-entry.c
@@ -34,16 +34,6 @@
#define STATIC static
#endif
-#ifndef DOS
-#include "ufc-crypt.h"
-#else
-/*
- * Thanks to greg%wind@plains.NoDak.edu (Greg W. Wettstein)
- * for DOS patches
- */
-#include "ufc.h"
-#endif
-#include "crypt.h"
#include "crypt-private.h"
/* Prototypes for local functions. */
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 */
diff --git a/crypt/crypt.c b/crypt/crypt.c
index 4fb25780fc..1919210daf 100644
--- a/crypt/crypt.c
+++ b/crypt/crypt.c
@@ -23,8 +23,6 @@
*
*/
-#include "ufc-crypt.h"
-#include "crypt.h"
#include "crypt-private.h"
#ifdef _UFC_32_
diff --git a/crypt/crypt_util.c b/crypt/crypt_util.c
index 9381d67194..da0a5aa33b 100644
--- a/crypt/crypt_util.c
+++ b/crypt/crypt_util.c
@@ -33,17 +33,6 @@
#define STATIC static
#endif
-#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"
#include "crypt-private.h"
/* Prototypes for local functions. */