summaryrefslogtreecommitdiffstats
path: root/xmalloc.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2007-10-19 20:50:01 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2007-10-19 20:50:01 +0000
commit92a42a9e7d1ac13d8e95597f633c18f1eacacde2 (patch)
tree2d854ae7be4723679eb5f4eed6f9c02483defb1e /xmalloc.c
parentcf77c80b935da2a822acdc4694cc3bdbcf7021f6 (diff)
FreeBSD requires stdint.h.
Diffstat (limited to 'xmalloc.c')
-rw-r--r--xmalloc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/xmalloc.c b/xmalloc.c
index b7ec6698..ad2c4b70 100644
--- a/xmalloc.c
+++ b/xmalloc.c
@@ -1,4 +1,4 @@
-/* $Id: xmalloc.c,v 1.4 2007-10-03 13:07:42 nicm Exp $ */
+/* $Id: xmalloc.c,v 1.5 2007-10-19 20:50:01 nicm Exp $ */
/*
* Copyright (c) 2004 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -20,6 +20,7 @@
#include <errno.h>
#include <libgen.h>
+#include <stdint.h>
#include <stdlib.h>
#include <string.h>