Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/usr.bin/make Use correct header for SIZE_MAX. from a.rin
details: https://anonhg.NetBSD.org/src/rev/493a81e43077
branches: trunk
changeset: 353016:493a81e43077
user: maya <maya%NetBSD.org@localhost>
date: Mon Apr 17 13:29:07 2017 +0000
description:
Use correct header for SIZE_MAX. from a.rin
diffstat:
usr.bin/make/parse.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diffs (37 lines):
diff -r d30d90a752db -r 493a81e43077 usr.bin/make/parse.c
--- a/usr.bin/make/parse.c Mon Apr 17 09:54:59 2017 +0000
+++ b/usr.bin/make/parse.c Mon Apr 17 13:29:07 2017 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: parse.c,v 1.224 2017/04/16 21:38:38 riastradh Exp $ */
+/* $NetBSD: parse.c,v 1.225 2017/04/17 13:29:07 maya Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1993
@@ -69,14 +69,14 @@
*/
#ifndef MAKE_NATIVE
-static char rcsid[] = "$NetBSD: parse.c,v 1.224 2017/04/16 21:38:38 riastradh Exp $";
+static char rcsid[] = "$NetBSD: parse.c,v 1.225 2017/04/17 13:29:07 maya Exp $";
#else
#include <sys/cdefs.h>
#ifndef lint
#if 0
static char sccsid[] = "@(#)parse.c 8.3 (Berkeley) 3/19/94";
#else
-__RCSID("$NetBSD: parse.c,v 1.224 2017/04/16 21:38:38 riastradh Exp $");
+__RCSID("$NetBSD: parse.c,v 1.225 2017/04/17 13:29:07 maya Exp $");
#endif
#endif /* not lint */
#endif
@@ -129,9 +129,9 @@
#include <assert.h>
#include <ctype.h>
#include <errno.h>
-#include <limits.h>
#include <stdarg.h>
#include <stdio.h>
+#include <stdint.h>
#ifndef MAP_FILE
#define MAP_FILE 0
Home |
Main Index |
Thread Index |
Old Index