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

Diff for /src/usr.bin/ranlib/Attic/misc.c between version 1.7 and 1.8

version 1.7, 2003/06/03 02:56:14 version 1.8, 2003/06/12 20:58:10
Line 50 
Line 50 
 char *tname = "temporary file";  char *tname = "temporary file";
   
 int  int
 tmp()  tmp(void)
 {  {
         static char *envtmp;          static char *envtmp;
         sigset_t set, oset;          sigset_t set, oset;
Line 83 
Line 83 
 }  }
   
 void *  void *
 emalloc(len)  emalloc(size_t len)
         size_t len;  
 {  {
         void *p;          void *p;
   
Line 94 
Line 93 
 }  }
   
 const char *  const char *
 rname(path)  rname(const char *path)
         const char *path;  
 {  {
         const char *ind;          const char *ind;
   
Line 103 
Line 101 
 }  }
   
 void  void
 badfmt()  badfmt(void)
 {  {
         errno = EFTYPE;          errno = EFTYPE;
         error(archive);          error(archive);
 }  }
   
 void  void
 error(name)  error(const char *name)
         const char *name;  
 {  {
   
         err(1, "%s", name);          err(1, "%s", name);

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