diff options
author | Paul Smith <psmith@gnu.org> | 2006-04-07 01:43:44 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2006-04-07 01:43:44 +0000 |
commit | f222b19158a91b121af29a6a8eb5d74aa591078a (patch) | |
tree | dffe00254df4fae89052c3a7af1eb0c92392d03f /commands.c | |
parent | 776d8b7bc2ff83f8ebf5d357ec89e3bbe6d83962 (diff) | |
download | make-f222b19158a91b121af29a6a8eb5d74aa591078a.tar.gz |
Code cleanup: Remove all references to PARAMS() & ansi2knr.
Diffstat (limited to 'commands.c')
-rw-r--r-- | commands.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -33,10 +33,10 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. */ # define FILE_LIST_SEPARATOR ' ' #endif -extern int remote_kill PARAMS ((int id, int sig)); +int remote_kill (int id, int sig); #ifndef HAVE_UNISTD_H -extern int getpid (); +int getpid (); #endif /* Set FILE's automatic variables up. */ |