diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 1996-10-22 16:27:47 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 1996-10-22 16:27:47 +0000 |
| commit | 40060a90b994b006447799ea47dbfe2d81a041f9 (patch) | |
| tree | ceee8ef517bcd35f7b6a951993b111b7d4fcceab /sys/kern/md5c.c | |
| parent | f98f97bb1e4af1b64bb3f2a996f260dc7cf44be1 (diff) | |
Notes
Diffstat (limited to 'sys/kern/md5c.c')
| -rw-r--r-- | sys/kern/md5c.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/kern/md5c.c b/sys/kern/md5c.c index 5c35b5b58d0c..ed4a7b6e6f04 100644 --- a/sys/kern/md5c.c +++ b/sys/kern/md5c.c @@ -24,12 +24,13 @@ These notices must be retained in any copies of any part of this documentation and/or software. */ -#include "md5.h" +#include <sys/types.h> #include <string.h> +#include "md5.h" typedef unsigned char *POINTER; -typedef unsigned short int UINT2; -typedef unsigned long int UINT4; +typedef u_int16_t UINT2; +typedef u_int32_t UINT4; #define PROTO_LIST(list) list |
