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

Diff for /src/usr.bin/make/engine.h between version 1.2 and 1.3

version 1.2, 2007/09/17 09:28:36 version 1.3, 2007/11/02 17:27:24
Line 65 
Line 65 
  *      fill all dynamic variables for a node.   *      fill all dynamic variables for a node.
  */   */
 extern void Make_DoAllVar(GNode *);  extern void Make_DoAllVar(GNode *);
   extern volatile sig_atomic_t got_signal;
   
   extern volatile sig_atomic_t got_SIGINT, got_SIGHUP, got_SIGQUIT,
       got_SIGTERM, got_SIGTSTP, got_SIGTTOU, got_SIGTTIN, got_SIGWINCH;
   
   extern void SigHandler(int);
   extern int run_gnode(GNode *, int);
   
   extern void setup_engine(void);
   
 #endif  #endif

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3