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

Diff for /src/usr.bin/make/compat.c between version 1.26 and 1.27

version 1.26, 2000/06/10 01:32:22 version 1.27, 2000/06/10 01:41:05
Line 84 
Line 84 
 static GNode        *curTarg = NULL;  static GNode        *curTarg = NULL;
 static GNode        *ENDNode;  static GNode        *ENDNode;
 static void CompatInterrupt __P((int));  static void CompatInterrupt __P((int));
 static int CompatRunCommand __P((ClientData, ClientData));  static int CompatRunCommand __P((void *, void *));
 static void CompatMake __P((ClientData, ClientData));  static void CompatMake __P((void *, void *));
 static int shellneed __P((char **av));  static int shellneed __P((char **av));
   
 /*-  /*-
Line 200 
Line 200 
  */   */
 static int  static int
 CompatRunCommand (cmdp, gnp)  CompatRunCommand (cmdp, gnp)
     ClientData    cmdp;         /* Command to execute */      void          *cmdp;        /* Command to execute */
     ClientData    gnp;          /* Node from which the command came */      void          *gnp;         /* Node from which the command came */
 {  {
     char          *cmdStart;    /* Start of expanded command */      char          *cmdStart;    /* Start of expanded command */
     char *cp, *bp = NULL;      char *cp, *bp = NULL;
Line 430 
Line 430 
  */   */
 static void  static void
 CompatMake(gnp, pgnp)  CompatMake(gnp, pgnp)
     ClientData  gnp;        /* The node to make */      void *gnp;      /* The node to make */
     ClientData  pgnp;       /* Parent to abort if necessary */      void *pgnp;     /* Parent to abort if necessary */
 {  {
     GNode *gn = (GNode *) gnp;      GNode *gn = (GNode *) gnp;
     GNode *pgn = (GNode *) pgnp;      GNode *pgn = (GNode *) pgnp;

Legend:
Removed from v.1.26  
changed lines
  Added in v.1.27