diff options
author | markm <markm@FreeBSD.org> | 2002-07-19 14:12:27 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2002-07-19 14:12:27 +0000 |
commit | 31fbc209c3e090fa1e862a793819254a961fcd2e (patch) | |
tree | b3a6b70be70ed63ed52653d0a82f0d13c1ac0fca /usr.bin/hexdump | |
parent | 35b3fd68026db10a7321bbc57b564fa97f3fdf7d (diff) | |
download | FreeBSD-src-31fbc209c3e090fa1e862a793819254a961fcd2e.zip FreeBSD-src-31fbc209c3e090fa1e862a793819254a961fcd2e.tar.gz |
s/inline/__inline/
Diffstat (limited to 'usr.bin/hexdump')
-rw-r--r-- | usr.bin/hexdump/display.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/hexdump/display.c b/usr.bin/hexdump/display.c index 4c7d863..f2eb93b 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 __inline void print(PR *, u_char *); void display() @@ -112,7 +112,7 @@ display() } } -static inline void +static __inline void print(pr, bp) PR *pr; u_char *bp; |