aboutsummaryrefslogtreecommitdiff
path: root/src/include/ipxe
diff options
context:
space:
mode:
authorMichael Brown <mcb30@ipxe.org>2012-03-26 14:43:52 +0100
committerMichael Brown <mcb30@ipxe.org>2012-03-26 14:43:52 +0100
commita6d49c17c9ef82420138a51b52a9ce57074650db (patch)
tree1931f96976c9a733b8f07d1ae0269d84ac0f113c /src/include/ipxe
parentd1465f7b0b4e3df4af1abf65462fe1d89e53a80a (diff)
downloadipxe-a6d49c17c9ef82420138a51b52a9ce57074650db.zip
ipxe-a6d49c17c9ef82420138a51b52a9ce57074650db.tar.gz
ipxe-a6d49c17c9ef82420138a51b52a9ce57074650db.tar.bz2
[console] Move putchar() and getchar() declarations to stdio.h
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/ipxe')
-rw-r--r--src/include/ipxe/console.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/ipxe/console.h b/src/include/ipxe/console.h
index 3bfa503..5188f98 100644
--- a/src/include/ipxe/console.h
+++ b/src/include/ipxe/console.h
@@ -1,6 +1,7 @@
#ifndef _IPXE_CONSOLE_H
#define _IPXE_CONSOLE_H
+#include <stdio.h>
#include <ipxe/tables.h>
/** @file
@@ -100,8 +101,6 @@ struct console_driver {
/* Function prototypes */
-extern void putchar ( int character );
-extern int getchar ( void );
extern int iskey ( void );
extern int getkey ( unsigned long timeout );