summaryrefslogtreecommitdiff
path: root/usr.bin/m4/expr.c
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2006-01-20 23:10:20 +0000
committerMarc Espie <espie@cvs.openbsd.org>2006-01-20 23:10:20 +0000
commitbb73845798cff57670d538da76e8d33d95a83c96 (patch)
tree9e05f9d8f0f4336731a34377fb78a85d6a5d7312 /usr.bin/m4/expr.c
parentf0d48f87e2fca677ee8cf862dadddda3c3dd47ee (diff)
use stdint.h where appropriate. okay millert@
Diffstat (limited to 'usr.bin/m4/expr.c')
-rw-r--r--usr.bin/m4/expr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/m4/expr.c b/usr.bin/m4/expr.c
index 5805eb08f60..b04c0da3b37 100644
--- a/usr.bin/m4/expr.c
+++ b/usr.bin/m4/expr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: expr.c,v 1.16 2004/05/12 21:17:03 espie Exp $ */
+/* $OpenBSD: expr.c,v 1.17 2006/01/20 23:10:19 espie Exp $ */
/*
* Copyright (c) 2004 Marc Espie <espie@cvs.openbsd.org>
*
@@ -14,7 +14,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#include <sys/types.h>
+#include <stdint.h>
#include <stdio.h>
#include <stddef.h>
#include "mdef.h"