From a3fc4e0754ac291cea549b27320abc4d8d56ca94 Mon Sep 17 00:00:00 2001 From: Doug Rabson Date: Wed, 25 Oct 2000 23:24:43 +0000 Subject: [PATCH] Make a few functions inline to save space. --- sys/boot/alpha/boot1/boot1.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/boot/alpha/boot1/boot1.c b/sys/boot/alpha/boot1/boot1.c index 2d2026a86870..d7a1a046a15b 100644 --- a/sys/boot/alpha/boot1/boot1.c +++ b/sys/boot/alpha/boot1/boot1.c @@ -154,7 +154,7 @@ devread(char *buf, int block, size_t size) prom_read(prom_fd, size, buf, block); } -static void +static inline void devclose() { if (prom_fd) { @@ -163,7 +163,7 @@ devclose() } } -static void +static inline void getfilename(char *filename, const char *defname) { int c; @@ -189,7 +189,7 @@ getfilename(char *filename, const char *defname) return; } -static void +static inline void loadfile(char *name, char *addr) { int n;