BSD 4_4_Lite1 release
[unix-history] / usr / src / lib / libcurses / ctrace.c
index 01bd172..4f53906 100644 (file)
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)ctrace.c   8.1 (Berkeley) 6/4/93";
+static char sccsid[] = "@(#)ctrace.c   8.2 (Berkeley) 10/5/93";
 #endif /* not lint */
 
 #ifdef DEBUG
 #include <stdio.h>
 
 #endif /* not lint */
 
 #ifdef DEBUG
 #include <stdio.h>
 
-#if __STDC__
+#ifdef __STDC__
 #include <stdarg.h>
 #else
 #include <varargs.h>
 #include <stdarg.h>
 #else
 #include <varargs.h>
@@ -51,7 +51,7 @@ static char sccsid[] = "@(#)ctrace.c  8.1 (Berkeley) 6/4/93";
 static FILE *tracefp;                  /* Curses debugging file descriptor. */
 
 void
 static FILE *tracefp;                  /* Curses debugging file descriptor. */
 
 void
-#if __STDC__
+#ifdef __STDC__
 __CTRACE(const char *fmt, ...)
 #else
 __CTRACE(fmt, va_alist)
 __CTRACE(const char *fmt, ...)
 #else
 __CTRACE(fmt, va_alist)
@@ -60,7 +60,7 @@ __CTRACE(fmt, va_alist)
 #endif
 {
        va_list ap;
 #endif
 {
        va_list ap;
-#if __STDC__
+#ifdef __STDC__
        va_start(ap, fmt);
 #else
        va_start(ap);
        va_start(ap, fmt);
 #else
        va_start(ap);