aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/make/buf.c
diff options
context:
space:
mode:
authorHartmut Brandt <harti@FreeBSD.org>2005-02-01 10:50:37 +0000
committerHartmut Brandt <harti@FreeBSD.org>2005-02-01 10:50:37 +0000
commit7a2029bac2130f8d12b0c3bfa5fca898e12e29a9 (patch)
treead58e65b384352ba6b76d8d9e9ad5ae790aaf99f /usr.bin/make/buf.c
parent9d97c7ee0a669da96995c604152359d99d483034 (diff)
Notes
Diffstat (limited to 'usr.bin/make/buf.c')
-rw-r--r--usr.bin/make/buf.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/usr.bin/make/buf.c b/usr.bin/make/buf.c
index 81e774a987ef..29ae06b265fa 100644
--- a/usr.bin/make/buf.c
+++ b/usr.bin/make/buf.c
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1988, 1989, 1990, 1993
* The Regents of the University of California. All rights reserved.
* Copyright (c) 1988, 1989 by Adam de Boor
@@ -47,9 +47,12 @@ __FBSDID("$FreeBSD$");
* Functions for automatically-expanded buffers.
*/
-#include "sprite.h"
-#include "make.h"
+#include <string.h>
+#include <stdlib.h>
+
#include "buf.h"
+#include "sprite.h"
+#include "util.h"
#ifndef max
#define max(a,b) ((a) > (b) ? (a) : (b))