Date: Mon, 29 Jul 2013 12:49:32 +0000 (UTC) From: "Andrey V. Elsukov" <ae@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r253767 - head/tools/tools/crypto Message-ID: <201307291249.r6TCnW41082060@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201307291249.r6TCnW41082060>