5757ac47cb
- split up patches into one source file per patch file. Obtained from: NetBSD (with a litte modification by me)
16 lines
505 B
Text
16 lines
505 B
Text
--- unarj.h.orig Wed Jun 23 06:07:20 1993
|
|
+++ unarj.h Wed Jan 21 15:03:39 1998
|
|
@@ -104,9 +104,13 @@
|
|
#endif
|
|
|
|
typedef unsigned char uchar; /* 8 bits or more */
|
|
+#if !defined(__FreeBSD__) && !defined(__OpenBSD__) && !defined(__NetBSD__)
|
|
typedef unsigned int uint; /* 16 - 32 bits or more */
|
|
typedef unsigned short ushort; /* 16 bits or more */
|
|
+#else
|
|
+# include <sys/types.h>
|
|
+#endif
|
|
typedef unsigned long ulong; /* 32 bits or more */
|
|
|
|
#define USHRT_BIT (CHAR_BIT * sizeof(ushort))
|
|
|