svn commit: r253767 - head/tools/tools/crypto

Andrey V. Elsukov ae at FreeBSD.org
Mon Jul 29 12:49:32 UTC 2013


Author: ae
Date: Mon Jul 29 12:49:32 2013
New Revision: 253767
URL: http://svnweb.freebsd.org/changeset/base/253767

Log:
  Include stdint.h to fix build.
  
  Pointed by:	Olivier Cochard-Labbé

Modified:
  head/tools/tools/crypto/ipsecstats.c

Modified: head/tools/tools/crypto/ipsecstats.c
==============================================================================
--- head/tools/tools/crypto/ipsecstats.c	Mon Jul 29 12:33:03 2013	(r253766)
+++ head/tools/tools/crypto/ipsecstats.c	Mon Jul 29 12:49:32 2013	(r253767)
@@ -25,11 +25,12 @@
  *
  * $FreeBSD$
  */
-#include <stdio.h>
 #include <sys/types.h>
 #include <netipsec/ipsec.h>
 #include <netipsec/ah_var.h>
 #include <netipsec/esp_var.h>
+#include <stdint.h>
+#include <stdio.h>
 
 struct alg {
 	int		a;


More information about the svn-src-head mailing list