diff options
| author | christos <christos@NetBSD.org> | 1997-07-11 20:17:37 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 1997-07-11 20:17:37 +0000 |
| commit | 87d111ebee2cfd8494308cf41efdad509cf0134c (patch) | |
| tree | d01f5128620eda314952c23cf38d4855e1ca4808 /usr.bin/make/util.c | |
| parent | 4507c82bcc4e0a0371f710238ccbb7f10724c404 (diff) | |
#if __STDC__ -> #ifdef __STDC__
Diffstat (limited to 'usr.bin/make/util.c')
| -rw-r--r-- | usr.bin/make/util.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/make/util.c b/usr.bin/make/util.c index 00e911d3da6..a8a22acbefb 100644 --- a/usr.bin/make/util.c +++ b/usr.bin/make/util.c @@ -1,4 +1,4 @@ -/* $NetBSD: util.c,v 1.13 1997/07/11 20:16:01 christos Exp $ */ +/* $NetBSD: util.c,v 1.14 1997/07/11 20:17:38 christos Exp $ */ /* * Missing stuff from OS's @@ -6,14 +6,14 @@ #include <sys/cdefs.h> #ifndef lint -__RCSID("$NetBSD: util.c,v 1.13 1997/07/11 20:16:01 christos Exp $"); +__RCSID("$NetBSD: util.c,v 1.14 1997/07/11 20:17:38 christos Exp $"); #endif #include <stdio.h> #include "make.h" #include <sys/param.h> -#if !__STDC__ +#ifndef __STDC__ # ifndef const # define const # endif |
