diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-05-04 16:32:54 +0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-05-04 16:32:54 +0000 |
commit | 26fd28432d61a88dcef5f3f79657c2caa9461a78 (patch) | |
tree | 63de2009fe94722a494ee2c63f72a92fe99662b0 /src/libutil/md5.h | |
parent | 5dea0622d1d673bf60f47781c33f343ce9979a7f (diff) | |
download | guix-26fd28432d61a88dcef5f3f79657c2caa9461a78.tar.gz |
* FreeBSD 4.x doesn't have stdint.h, use inttypes.h instead (which is
also part of ISO C).
Diffstat (limited to 'src/libutil/md5.h')
-rw-r--r-- | src/libutil/md5.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/md5.h b/src/libutil/md5.h index 6daac5060d..4b18733836 100644 --- a/src/libutil/md5.h +++ b/src/libutil/md5.h @@ -21,7 +21,7 @@ #ifndef _MD5_H #define _MD5_H 1 -#include <stdint.h> +#include <inttypes.h> typedef uint32_t md5_uint32; typedef uintptr_t md5_uintptr; |