Module Name: src
Committed By: rillig
Date: Fri Sep 25 04:18:11 UTC 2020
Modified Files:
src/usr.bin/make: lst.c lst.h
Log Message:
make(1): fix build on Debian 9
lst.h:92:5: error: unknown type name 'uint8_t'
It had been broken since the previous commit on 2020-09-24 08:23:29.
To generate a diff of this commit:
cvs rdiff -u -r1.70 -r1.71 src/usr.bin/make/lst.c
cvs rdiff -u -r1.66 -r1.67 src/usr.bin/make/lst.h
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.70 src/usr.bin/make/lst.c:1.71
--- src/usr.bin/make/lst.c:1.70 Thu Sep 24 08:23:29 2020
+++ src/usr.bin/make/lst.c Fri Sep 25 04:18:11 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: lst.c,v 1.70 2020/09/24 08:23:29 rillig Exp $ */
+/* $NetBSD: lst.c,v 1.71 2020/09/25 04:18:11 rillig Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1993
@@ -32,11 +32,9 @@
* SUCH DAMAGE.
*/
-#include <stdint.h>
-
#include "make.h"
-MAKE_RCSID("$NetBSD: lst.c,v 1.70 2020/09/24 08:23:29 rillig Exp $");
+MAKE_RCSID("$NetBSD: lst.c,v 1.71 2020/09/25 04:18:11 rillig Exp $");
/* Allocate and initialize a list node.
*
Index: src/usr.bin/make/lst.h
diff -u src/usr.bin/make/lst.h:1.66 src/usr.bin/make/lst.h:1.67
--- src/usr.bin/make/lst.h:1.66 Thu Sep 24 08:23:29 2020
+++ src/usr.bin/make/lst.h Fri Sep 25 04:18:11 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: lst.h,v 1.66 2020/09/24 08:23:29 rillig Exp $ */
+/* $NetBSD: lst.h,v 1.67 2020/09/25 04:18:11 rillig Exp $ */
/*
* Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
@@ -79,6 +79,7 @@
#define MAKE_LST_H
#include <sys/param.h>
+#include <stdint.h>
#include <stdlib.h>
/* A doubly-linked list of pointers. */