Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 3 Apr 2010 17:22:28 +0000 (UTC)
From:      Ed Schouten <ed@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r206141 - head/sys/teken
Message-ID:  <201004031722.o33HMSZh050945@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201004031722.o33HMSZh050945>