summaryrefslogtreecommitdiffstats
path: root/src/hci/readline.c
diff options
context:
space:
mode:
authorMichael Brown2006-12-20 00:42:46 +0100
committerMichael Brown2006-12-20 00:42:46 +0100
commita646e38f03921d9b91366efa57826c94f0893299 (patch)
treebc7bbe6c3d31584b075c4ea3f3f057ce1b153a21 /src/hci/readline.c
parentExplicitly print out-of-memory message to avoid tricking the user into (diff)
downloadipxe-a646e38f03921d9b91366efa57826c94f0893299.tar.gz
ipxe-a646e38f03921d9b91366efa57826c94f0893299.tar.xz
ipxe-a646e38f03921d9b91366efa57826c94f0893299.zip
Use stdlib.h for malloc() instead of malloc.h.
Diffstat (limited to 'src/hci/readline.c')
-rw-r--r--src/hci/readline.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hci/readline.c b/src/hci/readline.c
index a8cc455c..14dbeafe 100644
--- a/src/hci/readline.c
+++ b/src/hci/readline.c
@@ -17,7 +17,7 @@
*/
#include <string.h>
-#include <malloc.h>
+#include <stdlib.h>
#include <console.h>
#include <gpxe/editstring.h>
#include <readline/readline.h>