diff options
author | imp <imp@FreeBSD.org> | 2002-03-22 01:33:25 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2002-03-22 01:33:25 +0000 |
commit | 1698cb216e2d4ca62662103eba0191f134923698 (patch) | |
tree | bdbefa52f70f43a70ad528a58194f71ca4abf1e3 /usr.bin/nm | |
parent | 74d826c7a6e9f98072df5f7dba2b84aa516fe425 (diff) | |
download | FreeBSD-src-1698cb216e2d4ca62662103eba0191f134923698.zip FreeBSD-src-1698cb216e2d4ca62662103eba0191f134923698.tar.gz |
remove __P
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 5bad221..06d1b56 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() |