Description: fix warnings for extra tokens at end of #endif/#else directives
Author: Ricardo Mones <mones@debian.org>
Last-Update: 2013-09-19
Forwarded: not-needed

diff -urN b/dtime.c c/dtime.c
--- b/dtime.c	1991-09-14 07:15:25.000000000 +0200
+++ c/dtime.c	2013-09-19 01:36:51.789573189 +0200
@@ -22,9 +22,9 @@
 #ifdef  SYS5
 extern int daylight;
 extern long timezone;
-#else /*SYS5*/
+#else
 #include <sys/timeb.h>
-#endif /*SYS5*/
+#endif
 
 extern long time();
 struct tm* localtime();
@@ -45,7 +45,7 @@
     register struct tm* tm;
 #ifndef SYS5
     struct timeb tb;
-#endif not SYS5
+#endif
     static struct tws tw;
 
     if ( clock == (long*) 0 )
@@ -66,10 +66,10 @@
 #ifndef  SYS5
     ftime( &tb );
     tw.tw_zone = -tb.timezone;
-#else   SYS5
+#else
     tzset();
     tw.tw_zone = -( timezone / 60 );
-#endif  SYS5
+#endif
     tw.tw_flags &= ~TW_SDAY;
     tw.tw_flags |= TW_SEXP;
     tw.tw_clock = *clock;
diff -urN b/tws.h c/tws.h
--- b/tws.h	1991-09-14 01:32:38.000000000 +0200
+++ c/tws.h	2013-09-19 01:37:18.029113040 +0200
@@ -69,9 +69,9 @@
 
 #ifdef ATZ
 #define dtime(cl) dasctime( dlocaltime( cl ), TW_NULL )
-#else ATZ
+#else
 #define dtime(cl) dasctime( dlocaltime( cl ), TW_ZONE )
-#endif ATZ
+#endif
 
 #define dtwszone(tw) dtimezone( tw -> tw_zone, tw -> tw_flags )
 
diff -urN b/vroot.h c/vroot.h
--- b/vroot.h	1991-09-18 21:49:11.000000000 +0200
+++ c/vroot.h	2013-09-19 01:37:51.228530540 +0200
@@ -95,4 +95,4 @@
 #undef DefaultRootWindow
 #define DefaultRootWindow(dpy) VirtualRootWindowOfScreen(DefaultScreenOfDisplay(dpy))
 
-#endif /* _VROOT_H_ */
+#endif
