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/sdiff | |
parent | 137bf848182f7b8b042c2e2214a4d3c98ffb1189 (diff) |
Include stdint.h, not limits.h to get SIZE_MAX. OK guenther@
Diffstat (limited to 'usr.bin/sdiff')
-rw-r--r-- | usr.bin/sdiff/sdiff.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/sdiff/sdiff.c b/usr.bin/sdiff/sdiff.c index 93d0d4e904a..09870c6c55b 100644 --- a/usr.bin/sdiff/sdiff.c +++ b/usr.bin/sdiff/sdiff.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sdiff.c,v 1.31 2015/01/16 06:40:11 deraadt Exp $ */ +/* $OpenBSD: sdiff.c,v 1.32 2015/02/05 12:59:58 millert Exp $ */ /* * Written by Raymond Lai <ray@cyth.net>. @@ -17,6 +17,7 @@ #include <getopt.h> #include <limits.h> #include <paths.h> +#include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> |