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 /lib/libmd/md4c.c | |
| parent | f98f97bb1e4af1b64bb3f2a996f260dc7cf44be1 (diff) | |
Notes
Diffstat (limited to 'lib/libmd/md4c.c')
| -rw-r--r-- | lib/libmd/md4c.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/libmd/md4c.c b/lib/libmd/md4c.c index 7e90ec3bd6bf..c13d07394aaf 100644 --- a/lib/libmd/md4c.c +++ b/lib/libmd/md4c.c @@ -23,12 +23,13 @@ documentation and/or software. */ -#include "md4.h" +#include <sys/types.h> #include <string.h> +#include "md4.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 |
