22 lines
408 B
Plaintext
22 lines
408 B
Plaintext
--- includes.h.orig Tue Nov 23 09:30:54 1999
|
|
+++ includes.h Tue Nov 23 09:54:15 1999
|
|
@@ -1,9 +1,17 @@
|
|
#include "md4.h"
|
|
-#include "des.h"
|
|
+#include <des.h>
|
|
#include <memory.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <ctype.h>
|
|
+#include <machine/endian.h>
|
|
+
|
|
+/* XXX */
|
|
+#if BYTE_ORDER == BIG_ENDIAN
|
|
+# define BIGENDIAN
|
|
+#else
|
|
+# define MPU8086
|
|
+#endif
|
|
|
|
typedef short int16;
|
|
typedef int int32;
|