diff options
| author | Warner Losh <imp@FreeBSD.org> | 2002-03-22 01:33:25 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2002-03-22 01:33:25 +0000 |
| commit | d3cb5ded92a4fcf21400c9742ca884549bebc99e (patch) | |
| tree | bdbefa52f70f43a70ad528a58194f71ca4abf1e3 /usr.bin/nm | |
| parent | f1bb2cd2aa7488657658fbc09aae2ead579049ab (diff) | |
Notes
Diffstat (limited to 'usr.bin/nm')
| -rw-r--r-- | usr.bin/nm/nm.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/nm/nm.c b/usr.bin/nm/nm.c index 5bad221e4577..06d1b5629cc2 100644 --- a/usr.bin/nm/nm.c +++ b/usr.bin/nm/nm.c @@ -79,12 +79,12 @@ int (*sfunc)() = fname; #define SYMBOL_TYPE(x) ((x) & (N_TYPE | N_STAB)) #define SYMBOL_BIND(x) (((x) >> 4) & 0xf) -static void usage __P(( void )); -int process_file __P(( char * )); -int show_archive __P(( char *, FILE * )); -int show_objfile __P(( char *, FILE * )); -void print_symbol __P(( char *, struct nlist * )); -char typeletter __P((u_char)); +static void usage( void ); +int process_file( char * ); +int show_archive( char *, FILE * ); +int show_objfile( char *, FILE * ); +void print_symbol( char *, struct nlist * ); +char typeletter(u_char); /* * main() |
