Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/include #ifdef __STDC__ -> #if __STDC__



details:   https://anonhg.NetBSD.org/src/rev/11f2aa891065
branches:  trunk
changeset: 472084:11f2aa891065
user:      kleink <kleink%NetBSD.org@localhost>
date:      Tue Apr 20 20:15:47 1999 +0000

description:
#ifdef __STDC__ -> #if __STDC__

diffstat:

 include/unistd.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r c274b397ad16 -r 11f2aa891065 include/unistd.h
--- a/include/unistd.h  Tue Apr 20 14:30:32 1999 +0000
+++ b/include/unistd.h  Tue Apr 20 20:15:47 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: unistd.h,v 1.73 1999/03/26 22:23:57 sommerfe Exp $     */
+/*     $NetBSD: unistd.h,v 1.74 1999/04/20 20:15:48 kleink Exp $       */
 
 /*-
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -264,7 +264,7 @@
 #endif
 
 /* FIXME: this should go to <sys/time.h>! */
-#ifdef __STDC__
+#if __STDC__
 struct timeval;                                /* select(2) XXX */
 #endif
 int     select __P((int, fd_set *, fd_set *, fd_set *, struct timeval *));



Home | Main Index | Thread Index | Old Index