Module Name:    src
Committed By:   kleink
Date:           Wed Nov 20 17:19:14 UTC 2013

Modified Files:
        src/usr.bin/cmp: regular.c

Log Message:
Explicitly include <stdint.h> for uintmax_t; from Eitan Adler.


To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 src/usr.bin/cmp/regular.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.bin/cmp/regular.c
diff -u src/usr.bin/cmp/regular.c:1.23 src/usr.bin/cmp/regular.c:1.24
--- src/usr.bin/cmp/regular.c:1.23	Mon Nov 28 10:10:10 2011
+++ src/usr.bin/cmp/regular.c	Wed Nov 20 17:19:14 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: regular.c,v 1.23 2011/11/28 10:10:10 wiz Exp $	*/
+/*	$NetBSD: regular.c,v 1.24 2013/11/20 17:19:14 kleink Exp $	*/
 
 /*-
  * Copyright (c) 1991, 1993, 1994
@@ -34,7 +34,7 @@
 #if 0
 static char sccsid[] = "@(#)regular.c	8.3 (Berkeley) 4/2/94";
 #else
-__RCSID("$NetBSD: regular.c,v 1.23 2011/11/28 10:10:10 wiz Exp $");
+__RCSID("$NetBSD: regular.c,v 1.24 2013/11/20 17:19:14 kleink Exp $");
 #endif
 #endif /* not lint */
 
@@ -45,6 +45,7 @@ __RCSID("$NetBSD: regular.c,v 1.23 2011/
 #include <err.h>
 #include <limits.h>
 #include <stdlib.h>
+#include <stdint.h>
 #include <stdio.h>
 
 #include "extern.h"

Reply via email to