Author: ed Date: Sat Apr 3 17:22:28 2010 New Revision: 206141 URL: http://svn.freebsd.org/changeset/base/206141
Log: Just use <stdint.h> instead of <inttypes.h>. We don't need it here. Modified: head/sys/teken/teken.c Modified: head/sys/teken/teken.c ============================================================================== --- head/sys/teken/teken.c Sat Apr 3 16:20:22 2010 (r206140) +++ head/sys/teken/teken.c Sat Apr 3 17:22:28 2010 (r206141) @@ -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) _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"