A missing semicolon prevents libpayload to compile, this patch fixes that.
Signed-off-by: Jakob Bornecrantz <wallbraker@gmail.com> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3533 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
4b461b6b78
commit
b0d3e71273
|
@ -303,6 +303,6 @@ void fatal(const char* msg) __attribute__ ((noreturn));
|
|||
|
||||
/* libc/readline.c */
|
||||
char * readline(const char * prompt);
|
||||
int getline(char *buffer, int len)
|
||||
int getline(char *buffer, int len);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue