diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2015-04-29 00:13:27 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2015-04-29 00:13:27 +0000 |
commit | c794a2880593c0de2eefa9ccfe8d341efd952eb1 (patch) | |
tree | 0998f9138e0de6752709147f28c25967fe6dded0 /usr.bin/m4 | |
parent | de7d5b7702545d50c1d42c9e58826d7367f6ac92 (diff) |
Add missing #include <stdint.h> for SIZE_MAX
Diffstat (limited to 'usr.bin/m4')
-rw-r--r-- | usr.bin/m4/gnum4.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/m4/gnum4.c b/usr.bin/m4/gnum4.c index 8bc007b567f..94d23496eac 100644 --- a/usr.bin/m4/gnum4.c +++ b/usr.bin/m4/gnum4.c @@ -1,4 +1,4 @@ -/* $OpenBSD: gnum4.c,v 1.49 2015/04/25 15:33:47 espie Exp $ */ +/* $OpenBSD: gnum4.c,v 1.50 2015/04/29 00:13:26 millert Exp $ */ /* * Copyright (c) 1999 Marc Espie @@ -37,6 +37,7 @@ #include <regex.h> #include <stddef.h> #include <stdlib.h> +#include <stdint.h> #include <stdio.h> #include <string.h> #include <errno.h> |