loader: cstyle cleanup of bootstrap.h did miss a bit

correct small issues - misplaced comment and typos.
This commit is contained in:
Toomas Soome 2020-11-08 09:49:51 +00:00
parent 90b307a897
commit 83a252c6a1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=367480

View File

@ -111,10 +111,10 @@ struct console
/* reinit XXX may need more args */
int (* c_init)(int arg);
/* emit c */
void (* c_out)(int c);
int (* c_in)(void);
void (* c_out)(int c);
/* wait for and return input */
/* return nonzer if input waiting */
int (* c_in)(void);
/* return nonzero if input waiting */
int (* c_ready)(void);
};
extern struct console *consoles[];