diff options
author | Keith Kanios <spook@dynatos.net> | 2007-04-12 16:23:11 +0000 |
---|---|---|
committer | Keith Kanios <spook@dynatos.net> | 2007-04-12 16:23:11 +0000 |
commit | 82e15cd5b3034f8bb743538d366341da35f66f6d (patch) | |
tree | 18d4f3eca5b4908954287e3588e6fdd443088b60 /rdoff/hash.c | |
parent | 58421f96972a647a3dc7efb6927a9171d75ac238 (diff) | |
download | nasm-82e15cd5b3034f8bb743538d366341da35f66f6d.tar.gz nasm-82e15cd5b3034f8bb743538d366341da35f66f6d.tar.bz2 nasm-82e15cd5b3034f8bb743538d366341da35f66f6d.zip |
Fixed c99 support for RDOFF Tools
Diffstat (limited to 'rdoff/hash.c')
-rw-r--r-- | rdoff/hash.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/rdoff/hash.c b/rdoff/hash.c index 9f80002..7521359 100644 --- a/rdoff/hash.c +++ b/rdoff/hash.c @@ -8,6 +8,8 @@ * distributed in the NASM archive. */ +#include <inttypes.h> + #include "hash.h" typedef unsigned int crc32; |