]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
Remove uses of PARAMS.
authorJim Meyering <jim@meyering.net>
Fri, 10 Jan 2003 22:46:11 +0000 (22:46 +0000)
committerJim Meyering <jim@meyering.net>
Fri, 10 Jan 2003 22:46:11 +0000 (22:46 +0000)
lib/save-cwd.h

index 4801a4da3aabaf876081b0ceda67b25c670de923..01525301f57975647d3c2d443946b20ef7369af2 100644 (file)
@@ -7,17 +7,9 @@ struct saved_cwd
     char *name;
   };
 
-# ifndef PARAMS
-#  if defined PROTOTYPES || (defined __STDC__ && __STDC__)
-#   define PARAMS(Args) Args
-#  else
-#   define PARAMS(Args) ()
-#  endif
-# endif
-
-int save_cwd PARAMS ((struct saved_cwd *cwd));
-int restore_cwd PARAMS ((const struct saved_cwd *cwd, const char *dest,
-                        const char *from));
-void free_cwd PARAMS ((struct saved_cwd *cwd));
+int save_cwd (struct saved_cwd *cwd);
+int restore_cwd (const struct saved_cwd *cwd, const char *dest,
+                const char *from);
+void free_cwd (struct saved_cwd *cwd);
 
 #endif /* SAVE_CWD_H */