Just use <stdint.h> instead of <inttypes.h>. We don't need it here.

This commit is contained in:
Ed Schouten 2010-04-03 17:22:28 +00:00
parent 0ef12795b5
commit a54dd632ab

View File

@ -36,7 +36,7 @@
#else /* !(__FreeBSD__ && _KERNEL) */
#include <sys/types.h>
#include <assert.h>
#include <inttypes.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
#define teken_assert(x) assert(x)