From: Jim Meyering Date: Sat, 3 Jan 1998 11:56:09 +0000 (+0000) Subject: Guard PARAMS-enabling definition with X-Git-Tag: FILEUTILS-3_16j~24 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=541699c01cc5503edfd04cf36d1b7fd2d4760ff8;p=thirdparty%2Fcoreutils.git Guard PARAMS-enabling definition with `defined PROTOTYPES || (defined __STDC__ && __STDC__)' to avoid problems with Irix4's cc. From Kaveh Ghazi. --- diff --git a/lib/save-cwd.h b/lib/save-cwd.h index 27b2cef800..4801a4da3a 100644 --- a/lib/save-cwd.h +++ b/lib/save-cwd.h @@ -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) ()