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/file/file.h | |
parent | ec5d2ebad5e3102a055932148dd103272602b53b (diff) |
#if __STDC__ --> #ifdef __STDC__
Diffstat (limited to 'usr.bin/file/file.h')
-rw-r--r-- | usr.bin/file/file.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/file/file.h b/usr.bin/file/file.h index 579eec21f15..b09a8eccb10 100644 --- a/usr.bin/file/file.h +++ b/usr.bin/file/file.h @@ -1,4 +1,4 @@ -/* $OpenBSD: file.h,v 1.3 1997/02/09 23:58:23 millert Exp $ */ +/* $OpenBSD: file.h,v 1.4 1997/07/25 21:05:26 mickey Exp $ */ /* * file.h - definitions for file(1) program @@ -81,7 +81,7 @@ struct magic { #include <stdio.h> /* Include that here, to make sure __P gets defined */ #ifndef __P -# if __STDC__ || __cplusplus +# ifdef __STDC__ || __cplusplus # define __P(a) a # else # define __P(a) () |