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:
Jakob Bornecrantz 2008-08-23 12:17:46 +00:00 committed by Stefan Reinauer
parent 4b461b6b78
commit b0d3e71273
1 changed files with 1 additions and 1 deletions

View File

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