diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-05-04T16·32+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-05-04T16·32+0000 |
commit | 26fd28432d61a88dcef5f3f79657c2caa9461a78 (patch) | |
tree | 63de2009fe94722a494ee2c63f72a92fe99662b0 /src/libutil/sha1.h | |
parent | 5dea0622d1d673bf60f47781c33f343ce9979a7f (diff) |
* FreeBSD 4.x doesn't have stdint.h, use inttypes.h instead (which is
also part of ISO C).
Diffstat (limited to 'src/libutil/sha1.h')
-rw-r--r-- | src/libutil/sha1.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/sha1.h b/src/libutil/sha1.h index 012893bd3b94..5594f65b5f60 100644 --- a/src/libutil/sha1.h +++ b/src/libutil/sha1.h @@ -1,7 +1,7 @@ #ifndef _SHA_H #define _SHA_H -#include <stdint.h> +#include <inttypes.h> /* The SHA block size and message digest sizes, in bytes */ |