Guard PARAMS-enabling definition with
authorJim Meyering <jim@meyering.net>
Sat, 3 Jan 1998 11:56:09 +0000 (11:56 +0000)
committerJim Meyering <jim@meyering.net>
Sat, 3 Jan 1998 11:56:09 +0000 (11:56 +0000)
`defined PROTOTYPES || (defined __STDC__ && __STDC__)' to avoid
problems with Irix4's cc.  From Kaveh Ghazi.

lib/save-cwd.h

index 27b2cef..4801a4d 100644 (file)
@@ -8,7 +8,7 @@ struct saved_cwd
   };
 
 # ifndef PARAMS
-#  if __STDC__
+#  if defined PROTOTYPES || (defined __STDC__ && __STDC__)
 #   define PARAMS(Args) Args
 #  else
 #   define PARAMS(Args) ()