svn commit: r206141 - head/sys/teken

Ed Schouten ed at FreeBSD.org
Sat Apr 3 17:22:28 UTC 2010


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)


More information about the svn-src-all mailing list