Differences From:
File
src/sha1.c
part of check-in
[dbda8d6ce9]
- Initial check-in of m1 sources.
by
drh on
2007-07-21 14:10:57.
[view]
To:
File
src/sha1.c
part of check-in
[17486c353f]
- Add a #include of <sys/types.h> to sha1.c. I am told this help it to
compile on BSD systems.
by
drh on
2007-10-23 16:30:21.
[view]
@@ -2,8 +2,9 @@
** This implementation of SHA1 is adapted from the example implementation
** contained in RFC-3174.
*/
#include <stdint.h>
+#include <sys/types.h>
#include "config.h"
#include "sha1.h"
/*