From cd51b9e3acc4ebaa98c68d2ec24d4f46d089f166 Mon Sep 17 00:00:00 2001 From: kan Date: Wed, 28 Jul 2004 07:17:00 +0000 Subject: Move __iniline function definition before its first usage in the file. --- usr.sbin/eeprom/ofw_options.c | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/usr.sbin/eeprom/ofw_options.c b/usr.sbin/eeprom/ofw_options.c index d04e61a..a840d01 100644 --- a/usr.sbin/eeprom/ofw_options.c +++ b/usr.sbin/eeprom/ofw_options.c @@ -71,10 +71,16 @@ static struct ofwo_extabent ofwo_extab[] = { }; static int ofwo_setpass(int); -static __inline void ofwo_printprop(const char *, const char*, int); static int ofwo_setstr(int, const void *, int, const char *, const char *); +static __inline void +ofwo_printprop(const char *prop, const char* buf, int buflen) +{ + + printf("%s: %.*s\n", prop, buflen, buf); +} + static int ofwo_oemlogo(struct ofwo_extabent *exent, int fd, const void *buf, int buflen, const char *val) @@ -192,13 +198,6 @@ ofwo_setpass(int fd) return (EX_OK); } -static void -ofwo_printprop(const char *prop, const char* buf, int buflen) -{ - - printf("%s: %.*s\n", prop, buflen, buf); -} - static int ofwo_setstr(int fd, const void *buf, int buflen, const char *prop, const char *val) -- cgit v1.1