summaryrefslogtreecommitdiff
path: root/elfcopy/ascii.c
diff options
context:
space:
mode:
authorEd Maste <emaste@FreeBSD.org>2015-03-31 20:01:37 +0000
committerEd Maste <emaste@FreeBSD.org>2015-03-31 20:01:37 +0000
commit84d41a2986852c0d7d820f95b41c1db1cc818027 (patch)
tree58f47e5186d1b0f72f6784d004bab62d148eede8 /elfcopy/ascii.c
parentd356830d3d227b40603d19222ab35eb8f0f5c034 (diff)
Diffstat (limited to 'elfcopy/ascii.c')
-rw-r--r--elfcopy/ascii.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/elfcopy/ascii.c b/elfcopy/ascii.c
index 968e5c667f631..cad4eb8a91eb1 100644
--- a/elfcopy/ascii.c
+++ b/elfcopy/ascii.c
@@ -24,11 +24,11 @@
* SUCH DAMAGE.
*/
-#include <sys/cdefs.h>
#include <sys/param.h>
#include <ctype.h>
#include <err.h>
#include <gelf.h>
+#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@@ -36,7 +36,7 @@
#include "elfcopy.h"
-ELFTC_VCSID("$Id: ascii.c 2358 2011-12-19 18:22:32Z kaiwang27 $");
+ELFTC_VCSID("$Id: ascii.c 3177 2015-03-30 18:19:41Z emaste $");
static void append_data(struct section *s, const void *buf, size_t sz);
static char hex_digit(uint8_t n);