svn commit: r253447 - head/tools/regression/aio/aiop

Kevin Lo kevlo at FreeBSD.org
Thu Jul 18 06:32:19 UTC 2013


Author: kevlo
Date: Thu Jul 18 06:32:19 2013
New Revision: 253447
URL: http://svnweb.freebsd.org/changeset/base/253447

Log:
  Include stdint.h when use intmax_t.
  
  Reported by:	bde

Modified:
  head/tools/regression/aio/aiop/aiop.c

Modified: head/tools/regression/aio/aiop/aiop.c
==============================================================================
--- head/tools/regression/aio/aiop/aiop.c	Thu Jul 18 06:31:11 2013	(r253446)
+++ head/tools/regression/aio/aiop/aiop.c	Thu Jul 18 06:32:19 2013	(r253447)
@@ -39,6 +39,7 @@
 #include <sys/cdefs.h>
 __FBSDID("$FreeBSD$");
 
+#include <stdint.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <unistd.h>
@@ -50,7 +51,6 @@ __FBSDID("$FreeBSD$");
 #include <sys/disk.h>
 #include <aio.h>
 #include <fcntl.h>
-#include <inttypes.h>
 #include <string.h>
 #include <ctype.h>
 #include <assert.h>


More information about the svn-src-head mailing list