From e95e2344a82bc2a6afdb554babbae4c8fe66caa8 Mon Sep 17 00:00:00 2001 From: Alexander Kabaev Date: Wed, 28 Jul 2004 07:10:03 +0000 Subject: Do not predeclare __inline functions, this makes no sense and generates a warning with gcc 3.4.x. --- usr.bin/hexdump/display.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.bin/hexdump') diff --git a/usr.bin/hexdump/display.c b/usr.bin/hexdump/display.c index 0887f05deb2f..9f9ab88e21e4 100644 --- a/usr.bin/hexdump/display.c +++ b/usr.bin/hexdump/display.c @@ -55,7 +55,7 @@ enum _vflag vflag = FIRST; static off_t address; /* address/offset in stream */ static off_t eaddress; /* end address */ -static __inline void print(PR *, u_char *); +static void print(PR *, u_char *); void display(void) @@ -112,7 +112,7 @@ display(void) } } -static __inline void +static void print(PR *pr, u_char *bp) { long double ldbl; -- cgit v1.2.3