diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2015-02-05 12:59:59 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2015-02-05 12:59:59 +0000 |
commit | 731dc00d80a1e46b6c0c792de01e49bdddcba0da (patch) | |
tree | aad086c13def9dc029fe12997f1c9ec1ff24c8ee /usr.bin/m4 | |
parent | 137bf848182f7b8b042c2e2214a4d3c98ffb1189 (diff) |
Include stdint.h, not limits.h to get SIZE_MAX. OK guenther@
Diffstat (limited to 'usr.bin/m4')
-rw-r--r-- | usr.bin/m4/eval.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/m4/eval.c b/usr.bin/m4/eval.c index b4a72686b82..18f2241a5db 100644 --- a/usr.bin/m4/eval.c +++ b/usr.bin/m4/eval.c @@ -1,4 +1,4 @@ -/* $OpenBSD: eval.c,v 1.73 2014/07/11 21:04:17 espie Exp $ */ +/* $OpenBSD: eval.c,v 1.74 2015/02/05 12:59:57 millert Exp $ */ /* $NetBSD: eval.c,v 1.7 1996/11/10 21:21:29 pk Exp $ */ /* @@ -45,6 +45,7 @@ #include <limits.h> #include <unistd.h> #include <stdio.h> +#include <stdint.h> #include <stdlib.h> #include <stddef.h> #include <string.h> |