diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-07-25 20:12:33 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-07-25 20:12:33 +0000 |
commit | 1626c644fa840e7d0e3178a0c02abb959cbb2d39 (patch) | |
tree | 6ccdff5f99d9f696c32990e7e7300e577ecb2010 /usr.sbin/config/config.h | |
parent | bdd29b5fbbe2dc1fb578b767909cfc64b6db403b (diff) |
#if __STDC__ --> #ifdef __STDC__
Diffstat (limited to 'usr.sbin/config/config.h')
-rw-r--r-- | usr.sbin/config/config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/config/config.h b/usr.sbin/config/config.h index 79c6bd62053..252e054f438 100644 --- a/usr.sbin/config/config.h +++ b/usr.sbin/config/config.h @@ -1,4 +1,4 @@ -/* $OpenBSD: config.h,v 1.8 1997/07/06 03:54:04 downsj Exp $ */ +/* $OpenBSD: config.h,v 1.9 1997/07/25 20:12:10 mickey Exp $ */ /* $NetBSD: config.h,v 1.30 1997/02/02 21:12:30 thorpej Exp $ */ /* @@ -63,7 +63,7 @@ #endif /* ...STDC */ #endif /* ...BSD */ -#if __STDC__ +#ifdef __STDC__ #include <stdlib.h> #include <unistd.h> #endif |