diff options
author | Michael Brown <mcb30@ipxe.org> | 2012-03-26 14:43:52 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2012-03-26 14:43:52 +0100 |
commit | a6d49c17c9ef82420138a51b52a9ce57074650db (patch) | |
tree | 1931f96976c9a733b8f07d1ae0269d84ac0f113c /src/drivers/net/etherfabric.c | |
parent | d1465f7b0b4e3df4af1abf65462fe1d89e53a80a (diff) | |
download | ipxe-a6d49c17c9ef82420138a51b52a9ce57074650db.tar.gz |
[console] Move putchar() and getchar() declarations to stdio.h
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/drivers/net/etherfabric.c')
-rw-r--r-- | src/drivers/net/etherfabric.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/net/etherfabric.c b/src/drivers/net/etherfabric.c index 15e7d4c1..e82d6eb8 100644 --- a/src/drivers/net/etherfabric.c +++ b/src/drivers/net/etherfabric.c @@ -20,11 +20,11 @@ FILE_LICENCE ( GPL_ANY ); #include <stdint.h> #include <stdlib.h> +#include <stdio.h> #include <unistd.h> #include <errno.h> #include <assert.h> #include <byteswap.h> -#include <ipxe/console.h> #include <ipxe/io.h> #include <ipxe/pci.h> #include <ipxe/malloc.h> |