diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-07-25 21:05:47 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-07-25 21:05:47 +0000 |
commit | dac2e5bb3990fd05a5027fc01a8f9c0b59895523 (patch) | |
tree | 32ab5e771b0ce146934c9462a6bbb409e4fa4390 /usr.bin/make/lst.h | |
parent | ec5d2ebad5e3102a055932148dd103272602b53b (diff) |
#if __STDC__ --> #ifdef __STDC__
Diffstat (limited to 'usr.bin/make/lst.h')
-rw-r--r-- | usr.bin/make/lst.h | 4 |
1 files changed, 2 insertions, 2 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 |