[BACK]Return to cmd_exec.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / make

Diff for /src/usr.bin/make/cmd_exec.c between version 1.10 and 1.11

version 1.10, 2016/03/28 11:27:37 version 1.11, 2020/01/16 16:07:18
Line 35 
Line 35 
 #include "buf.h"  #include "buf.h"
 #include "memory.h"  #include "memory.h"
 #include "pathnames.h"  #include "pathnames.h"
   #include "job.h"
   
 char *  char *
 Cmd_Exec(const char *cmd, char **err)  Cmd_Exec(const char *cmd, char **err)
Line 67 
Line 68 
         /* Fork */          /* Fork */
         switch (cpid = fork()) {          switch (cpid = fork()) {
         case 0:          case 0:
                   reset_signal_mask();
                 /* Close input side of pipe */                  /* Close input side of pipe */
                 (void)close(fds[0]);                  (void)close(fds[0]);
   

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11