1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-04 11:21:47 +02:00

* FreeBSD 4.x doesn't have stdint.h, use inttypes.h instead (which is

also part of ISO C).
This commit is contained in:
Eelco Dolstra 2005-05-04 16:32:54 +00:00
parent 5dea0622d1
commit 26fd28432d
3 changed files with 3 additions and 3 deletions

View file

@ -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;