svn commit: r276477 - head/contrib/elftoolchain/readelf

Ed Maste emaste at FreeBSD.org
Wed Dec 31 19:22:43 UTC 2014


Author: emaste
Date: Wed Dec 31 19:21:53 2014
New Revision: 276477
URL: https://svnweb.freebsd.org/changeset/base/276477

Log:
  readelf: Add stdint.h for C99 fixed size types
  
  Upstream elftoolchain brings in stdint.h via an ELF header that we
  do not use in FreeBSD.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/contrib/elftoolchain/readelf/readelf.c

Modified: head/contrib/elftoolchain/readelf/readelf.c
==============================================================================
--- head/contrib/elftoolchain/readelf/readelf.c	Wed Dec 31 18:16:50 2014	(r276476)
+++ head/contrib/elftoolchain/readelf/readelf.c	Wed Dec 31 19:21:53 2014	(r276477)
@@ -38,6 +38,7 @@
 #include <libelftc.h>
 #include <libgen.h>
 #include <stdarg.h>
+#include <stdint.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>


More information about the svn-src-head mailing list