Ignore:
Timestamp:
Sep 8, 2004, 4:43:30 AM (21 years ago)
Author:
bird
Message:

GNU Make 3.81beta1.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/gmake/remote-stub.c

    r54 r153  
    4444
    4545int
    46 start_remote_job_p (int first_p)
     46start_remote_job_p (int first_p UNUSED)
    4747{
    4848  return 0;
     
    5858
    5959int
    60 start_remote_job (char **argv, char **envp, int stdin_fd,
    61                   int *is_remote, int *id_ptr, int *used_stdin)
     60start_remote_job (char **argv UNUSED, char **envp UNUSED, int stdin_fd UNUSED,
     61                  int *is_remote UNUSED, int *id_ptr UNUSED,
     62                  int *used_stdin UNUSED)
    6263{
    6364  return -1;
     
    7273
    7374int
    74 remote_status (int *exit_code_ptr, int *signal_ptr, int *coredump_ptr,
    75                int block)
     75remote_status (int *exit_code_ptr UNUSED, int *signal_ptr UNUSED,
     76               int *coredump_ptr UNUSED, int block UNUSED)
    7677{
    7778  errno = ECHILD;
     
    99100/* Send signal SIG to child ID.  Return 0 if successful, -1 if not.  */
    100101int
    101 remote_kill (int id, int sig)
     102remote_kill (int id UNUSED, int sig UNUSED)
    102103{
    103104  return -1;
Note: See TracChangeset for help on using the changeset viewer.