diff options
| author | Michael Brown | 2007-01-18 21:06:03 +0100 |
|---|---|---|
| committer | Michael Brown | 2007-01-18 21:06:03 +0100 |
| commit | 5ff23aa406276c0932e7be760c31971dd1274d3f (patch) | |
| tree | a0b2c8e00311176208ec2ed0555579607084ac0c /src/hci | |
| parent | console.h is no longer needed for debugging (diff) | |
| download | ipxe-5ff23aa406276c0932e7be760c31971dd1274d3f.tar.gz ipxe-5ff23aa406276c0932e7be760c31971dd1274d3f.tar.xz ipxe-5ff23aa406276c0932e7be760c31971dd1274d3f.zip | |
Include stdlib.h rather than malloc.h
Diffstat (limited to 'src/hci')
| -rw-r--r-- | src/hci/mucurses/slk.c | 2 | ||||
| -rw-r--r-- | src/hci/mucurses/windows.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/hci/mucurses/slk.c b/src/hci/mucurses/slk.c index ca0822882..4422e15a0 100644 --- a/src/hci/mucurses/slk.c +++ b/src/hci/mucurses/slk.c @@ -1,6 +1,6 @@ #include <curses.h> #include <stddef.h> -#include <malloc.h> +#include <stdlib.h> #include <string.h> #include <assert.h> #include "mucurses.h" diff --git a/src/hci/mucurses/windows.c b/src/hci/mucurses/windows.c index c1a3a9315..63d0af08c 100644 --- a/src/hci/mucurses/windows.c +++ b/src/hci/mucurses/windows.c @@ -1,6 +1,6 @@ #include <curses.h> #include <stddef.h> -#include <malloc.h> +#include <stdlib.h> #include "mucurses.h" /** @file |
