* add readline()
[coreboot.git] / payloads / libpayload / include / libpayload.h
index 516bcc38ffc48dfb8fad5686d17e3a442447a0a0..b7f7fe0276d99be7e273153063f8d87507e2952b 100644 (file)
@@ -298,5 +298,10 @@ void delay(unsigned int n);
 /* i386/util.S */
 #define abort() halt()
 void halt(void) __attribute__ ((noreturn));
+void fatal(const char* msg) __attribute__ ((noreturn));
+
+/* libc/readline.c */
+char * readline(const char * prompt);
+int getline(char *buffer, int len)
 
 #endif