1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-27 21:29:02 +00:00
freebsd-ports/archivers/unarj/files/patch-aa
Andrey A. Chernov 1965e617b5 upgrade to 2.43
1999-02-17 22:25:40 +00:00

16 lines
503 B
Plaintext

--- unarj.h.orig Mon Sep 29 14:00:24 1997
+++ unarj.h Thu Feb 18 01:06:10 1999
@@ -106,8 +106,12 @@
#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))