diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-07-25 20:30:28 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-07-25 20:30:28 +0000 |
commit | 7baa7d06cf60a96d45c4a33ac4b83042a409e6f0 (patch) | |
tree | 535f30ade3133c1d8d84a06136dd0f216024ffb3 /lib/libcom_err | |
parent | 1626c644fa840e7d0e3178a0c02abb959cbb2d39 (diff) |
#if __STDC__ --> #ifdef __STDC__
Diffstat (limited to 'lib/libcom_err')
-rw-r--r-- | lib/libcom_err/com_err.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libcom_err/com_err.c b/lib/libcom_err/com_err.c index 6e08993aa57..ccadfafaefd 100644 --- a/lib/libcom_err/com_err.c +++ b/lib/libcom_err/com_err.c @@ -1,4 +1,4 @@ -/* $OpenBSD: com_err.c,v 1.2 1996/11/11 09:49:47 downsj Exp $ */ +/* $OpenBSD: com_err.c,v 1.3 1997/07/25 20:30:27 mickey Exp $ */ /*- * Copyright 1987, 1988 by the Student Information Processing Board @@ -19,7 +19,7 @@ #include <stdio.h> -#if __STDC__ +#ifdef __STDC__ # undef VARARGS # include <stdarg.h> #else @@ -48,7 +48,7 @@ #if !defined(lint) static const char rcsid[] = - "$Id: com_err.c,v 1.2 1996/11/11 09:49:47 downsj Exp $"; + "$Id: com_err.c,v 1.3 1997/07/25 20:30:27 mickey Exp $"; #endif /* ! lint */ static void |