Module Name: src
Committed By: skrll
Date: Sat Aug 22 16:00:52 UTC 2020
Modified Files:
src/usr.bin/make: lst.c
Log Message:
#include <stdint.h> for uint8_t
To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 src/usr.bin/make/lst.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/make/lst.c
diff -u src/usr.bin/make/lst.c:1.29 src/usr.bin/make/lst.c:1.30
--- src/usr.bin/make/lst.c:1.29 Sat Aug 22 15:43:32 2020
+++ src/usr.bin/make/lst.c Sat Aug 22 16:00:52 2020
@@ -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