Make a few functions inline to save space.

This commit is contained in:
Doug Rabson 2000-10-25 23:24:43 +00:00
parent f8c05e5019
commit a3fc4e0754
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=67590

View File

@ -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;