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

Diff for /src/usr.bin/rpcgen/rpc_tblout.c between version 1.2 and 1.3

version 1.2, 1996/06/26 05:38:41 version 1.3, 2001/07/17 02:23:59
Line 39 
Line 39 
  */   */
 #include <sys/cdefs.h>  #include <sys/cdefs.h>
 #include <stdio.h>  #include <stdio.h>
   #include <stdlib.h>
 #include <string.h>  #include <string.h>
   #include "rpc_scan.h"
 #include "rpc_parse.h"  #include "rpc_parse.h"
 #include "rpc_util.h"  #include "rpc_util.h"
   
Line 58 
Line 60 
   
 static char tbl_nproc[] = "int %s_nproc =\n\tsizeof(%s_table)/sizeof(%s_table[0]);\n\n";  static char tbl_nproc[] = "int %s_nproc =\n\tsizeof(%s_table)/sizeof(%s_table[0]);\n\n";
   
 static write_table __P((definition *));  static void write_table __P((definition *));
 static printit __P((char *, char *));  static void printit __P((char *, char *));
   
 void  void
 write_tables()  write_tables()
Line 76 
Line 78 
         }          }
 }  }
   
 static  static void
 write_table(def)  write_table(def)
         definition *def;          definition *def;
 {  {
Line 143 
Line 145 
         }          }
 }  }
   
 static  static void
 printit(prefix, type)  printit(prefix, type)
         char *prefix;          char *prefix;
         char *type;          char *type;

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