summaryrefslogtreecommitdiff
path: root/usr.bin/make
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/make')
-rw-r--r--usr.bin/make/lst.h4
-rw-r--r--usr.bin/make/make.h4
-rw-r--r--usr.bin/make/parse.c10
-rw-r--r--usr.bin/make/util.c6
4 files changed, 12 insertions, 12 deletions
diff --git a/usr.bin/make/lst.h b/usr.bin/make/lst.h
index 3f928128f54..a316a04a42e 100644
--- a/usr.bin/make/lst.h
+++ b/usr.bin/make/lst.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: lst.h,v 1.4 1996/11/30 21:08:58 millert Exp $ */
+/* $OpenBSD: lst.h,v 1.5 1997/07/25 21:05:34 mickey Exp $ */
/* $NetBSD: lst.h,v 1.7 1996/11/06 17:59:12 christos Exp $ */
/*
@@ -50,7 +50,7 @@
#include <sprite.h>
#include <sys/param.h>
-#if __STDC__
+#ifdef __STDC__
#include <stdlib.h>
#endif
diff --git a/usr.bin/make/make.h b/usr.bin/make/make.h
index 5e4f5a51c15..bd31d44a502 100644
--- a/usr.bin/make/make.h
+++ b/usr.bin/make/make.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: make.h,v 1.9 1997/04/28 01:52:39 millert Exp $ */
+/* $OpenBSD: make.h,v 1.10 1997/07/25 21:05:34 mickey Exp $ */
/* $NetBSD: make.h,v 1.15 1997/03/10 21:20:00 christos Exp $ */
/*
@@ -73,7 +73,7 @@
# endif
#endif
-#if __STDC__
+#ifdef __STDC__
#include <stdlib.h>
#include <unistd.h>
#endif
diff --git a/usr.bin/make/parse.c b/usr.bin/make/parse.c
index 8ecb4b28641..f2b8d73a4a4 100644
--- a/usr.bin/make/parse.c
+++ b/usr.bin/make/parse.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.c,v 1.14 1997/04/28 01:52:40 millert Exp $ */
+/* $OpenBSD: parse.c,v 1.15 1997/07/25 21:05:35 mickey Exp $ */
/* $NetBSD: parse.c,v 1.29 1997/03/10 21:20:04 christos Exp $ */
/*
@@ -43,7 +43,7 @@
#if 0
static char sccsid[] = "@(#)parse.c 8.3 (Berkeley) 3/19/94";
#else
-static char rcsid[] = "$OpenBSD: parse.c,v 1.14 1997/04/28 01:52:40 millert Exp $";
+static char rcsid[] = "$OpenBSD: parse.c,v 1.15 1997/07/25 21:05:35 mickey Exp $";
#endif
#endif /* not lint */
@@ -89,7 +89,7 @@ static char rcsid[] = "$OpenBSD: parse.c,v 1.14 1997/04/28 01:52:40 millert Exp
* Parse_MainName Returns a Lst of the main target to create.
*/
-#if __STDC__
+#ifdef __STDC__
#include <stdarg.h>
#else
#include <varargs.h>
@@ -310,7 +310,7 @@ ParseFindKeyword (str)
*/
/* VARARGS */
void
-#if __STDC__
+#ifdef __STDC__
Parse_Error(int type, char *fmt, ...)
#else
Parse_Error(va_alist)
@@ -318,7 +318,7 @@ Parse_Error(va_alist)
#endif
{
va_list ap;
-#if __STDC__
+#ifdef __STDC__
va_start(ap, fmt);
#else
int type; /* Error type (PARSE_WARNING, PARSE_FATAL) */
diff --git a/usr.bin/make/util.c b/usr.bin/make/util.c
index 929391b5c23..1d2c58fba97 100644
--- a/usr.bin/make/util.c
+++ b/usr.bin/make/util.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: util.c,v 1.6 1997/04/01 07:28:26 millert Exp $ */
+/* $OpenBSD: util.c,v 1.7 1997/07/25 21:05:36 mickey Exp $ */
/* $NetBSD: util.c,v 1.10 1996/12/31 17:56:04 christos Exp $ */
/*
@@ -6,14 +6,14 @@
*/
#ifndef lint
-static char rcsid[] = "$OpenBSD: util.c,v 1.6 1997/04/01 07:28:26 millert Exp $";
+static char rcsid[] = "$OpenBSD: util.c,v 1.7 1997/07/25 21:05:36 mickey Exp $";
#endif
#include <stdio.h>
#include "make.h"
#include <sys/param.h>
-#if !__STDC__
+#ifndef __STDC__
# ifndef const
# define const
# endif