Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/usr.bin/make #include <stdint.h> for uint8_t
details: https://anonhg.NetBSD.org/src/rev/2c9ab1438f90
branches: trunk
changeset: 937625:2c9ab1438f90
user: skrll <skrll%NetBSD.org@localhost>
date: Sat Aug 22 16:00:52 2020 +0000
description:
#include <stdint.h> for uint8_t
diffstat:
usr.bin/make/lst.c | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diffs (28 lines):
diff -r bc91668235ce -r 2c9ab1438f90 usr.bin/make/lst.c
--- a/usr.bin/make/lst.c Sat Aug 22 15:55:22 2020 +0000
+++ b/usr.bin/make/lst.c Sat Aug 22 16:00:52 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: lst.c,v 1.29 2020/08/22 15:43:32 rillig Exp $ */
+/* $NetBSD: lst.c,v 1.30 2020/08/22 16:00:52 skrll Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1993
@@ -33,15 +33,16 @@
*/
#include <assert.h>
+#include <stdint.h>
#include "make.h"
#ifndef MAKE_NATIVE
-static char rcsid[] = "$NetBSD: lst.c,v 1.29 2020/08/22 15:43:32 rillig Exp $";
+static char rcsid[] = "$NetBSD: lst.c,v 1.30 2020/08/22 16:00:52 skrll Exp $";
#else
#include <sys/cdefs.h>
#ifndef lint
-__RCSID("$NetBSD: lst.c,v 1.29 2020/08/22 15:43:32 rillig Exp $");
+__RCSID("$NetBSD: lst.c,v 1.30 2020/08/22 16:00:52 skrll Exp $");
#endif /* not lint */
#endif
Home |
Main Index |
Thread Index |
Old Index