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

Diff for /src/usr.bin/nm/nm.c between version 1.15 and 1.16

version 1.15, 2001/11/19 19:02:15 version 1.16, 2002/02/16 21:27:50
Line 77 
Line 77 
 int fcount;  int fcount;
   
 int rev;  int rev;
 int fname __P((const void *, const void *));  int fname(const void *, const void *);
 int rname __P((const void *, const void *));  int rname(const void *, const void *);
 int value __P((const void *, const void *));  int value(const void *, const void *);
 int (*sfunc) __P((const void *, const void *)) = fname;  int (*sfunc)(const void *, const void *) = fname;
 char *otherstring __P((struct nlist *));  char *otherstring(struct nlist *);
 char *typestring __P((unsigned int));  char *typestring(unsigned int);
 char typeletter __P((unsigned int));  char typeletter(unsigned int);
   
   
 /* some macros for symbol type (nlist.n_type) handling */  /* some macros for symbol type (nlist.n_type) handling */
Line 91 
Line 91 
 #define IS_EXTERNAL(x)          ((x) & N_EXT)  #define IS_EXTERNAL(x)          ((x) & N_EXT)
 #define SYMBOL_TYPE(x)          ((x) & (N_TYPE | N_STAB))  #define SYMBOL_TYPE(x)          ((x) & (N_TYPE | N_STAB))
   
 void    *emalloc __P((size_t));  void    *emalloc(size_t);
 void     pipe2cppfilt __P((void));  void     pipe2cppfilt(void);
 void     usage __P((void));  void     usage(void);
 char    *symname __P((struct nlist *));  char    *symname(struct nlist *);
 void    print_symbol __P((const char *, struct nlist *));  void    print_symbol(const char *, struct nlist *);
   
 /*  /*
  * main()   * main()

Legend:
Removed from v.1.15  
changed lines
  Added in v.1.16