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

Diff for /src/usr.bin/lam/lam.c between version 1.8 and 1.9

version 1.8, 2003/06/03 02:56:09 version 1.9, 2003/06/10 22:20:47
Line 75 
Line 75 
 char    *pad(struct openfile *);  char    *pad(struct openfile *);
   
 int  int
 main(argc, argv)  main(int argc, char *argv[])
         int argc;  
         char *argv[];  
 {  {
         struct  openfile *ip;          struct  openfile *ip;
   
Line 98 
Line 96 
 }  }
   
 void  void
 getargs(av)  getargs(char *av[])
         char *av[];  
 {  {
         struct  openfile *ip = input;          struct  openfile *ip = input;
         char *p;          char *p;
Line 171 
Line 168 
 }  }
   
 char *  char *
 pad(ip)  pad(struct openfile *ip)
         struct openfile *ip;  
 {  {
         size_t n;          size_t n;
         char *lp = linep;          char *lp = linep;
Line 187 
Line 183 
 }  }
   
 char *  char *
 gatherline(ip)  gatherline(struct openfile *ip)
         struct openfile *ip;  
 {  {
         size_t n;          size_t n;
         char s[BUFSIZ];          char s[BUFSIZ];
Line 218 
Line 213 
 }  }
   
 void  void
 error(msg, s)  error(char *msg, char *s)
         char *msg, *s;  
 {  {
         fprintf(stderr, "lam: ");          fprintf(stderr, "lam: ");
         fprintf(stderr, msg, s);          fprintf(stderr, msg, s);

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.9