blob: 4d0070f150b39de7bf94c21fb7b1821b34d7b5c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
$NetBSD: patch-aa,v 1.1.1.1 1999/05/23 02:01:25 tv Exp $
--- depack.h.orig Sat May 22 21:55:32 1999
+++ depack.h Sat May 22 21:56:18 1999
@@ -4,8 +4,10 @@
* see accompanying file README for distribution information
*/
+#include <sys/types.h>
+
typedef unsigned char ubyte;
-typedef unsigned long ulong;
+#define ulong uint
extern ulong depackedlen(ubyte *packed, ulong plen);
extern void ppdepack(ubyte *packed, ubyte *depacked, ulong plen, ulong unplen);
|