[BACK]Return to setpgrp.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libc / compat-43

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/lib/libc/compat-43/setpgrp.c between version 1.6 and 1.7

version 1.6, 1998/02/02 06:26:39 version 1.7, 2002/05/26 11:52:12
Line 46  __RCSID("$NetBSD$");
Line 46  __RCSID("$NetBSD$");
 #include <unistd.h>  #include <unistd.h>
   
 int  int
 #if __STDC__  
 setpgrp(pid_t pid, pid_t pgid)  setpgrp(pid_t pid, pid_t pgid)
 #else  
 setpgrp(pid, pgid)  
         pid_t pid, pgid;  
 #endif  
 {  {
         return(setpgid(pid, pgid));          return(setpgid(pid, pgid));
 }  }

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7

CVSweb <webmaster@jp.NetBSD.org>