]> git.ipfire.org Git - thirdparty/ipxe.git/commitdiff
Use stdlib.h for malloc() instead of malloc.h.
authorMichael Brown <mcb30@etherboot.org>
Tue, 19 Dec 2006 23:42:46 +0000 (23:42 +0000)
committerMichael Brown <mcb30@etherboot.org>
Tue, 19 Dec 2006 23:42:46 +0000 (23:42 +0000)
src/crypto/chap.c
src/drivers/bus/pci.c
src/hci/readline.c
src/net/dhcpopts.c
src/net/netdevice.c

index 6064a30a6f4c34c409ca736a628c033c01314d3d..6bebaca5a3ef7b1bbaa8aca96983df0448fe0c94 100644 (file)
@@ -21,7 +21,6 @@
 #include <string.h>
 #include <errno.h>
 #include <assert.h>
-#include <malloc.h>
 #include <gpxe/crypto.h>
 #include <gpxe/chap.h>
 
index 222f3eeab9d495d9346668866c247e62ff8064de..2406b1307814634bf14d819663b58ab77b87a3f4 100644 (file)
@@ -20,9 +20,9 @@
  */
 
 #include <stdint.h>
+#include <stdlib.h>
 #include <string.h>
 #include <errno.h>
-#include <malloc.h>
 #include <gpxe/tables.h>
 #include <gpxe/device.h>
 #include <gpxe/pci.h>
index a8cc455c36c29e87728cbea31a47ce61053871f0..14dbeafefd123a6ecf74ac1cfed8fb0d60b9c3d8 100644 (file)
@@ -17,7 +17,7 @@
  */
 
 #include <string.h>
-#include <malloc.h>
+#include <stdlib.h>
 #include <console.h>
 #include <gpxe/editstring.h>
 #include <readline/readline.h>
index e847c81d8680bdf597f7b09625ea00261668bad9..3013b669b33dbeb88279b810b44eef872fe863e3 100644 (file)
  */
 
 #include <stdint.h>
+#include <stdlib.h>
 #include <byteswap.h>
 #include <errno.h>
 #include <string.h>
-#include <malloc.h>
 #include <assert.h>
 #include <vsprintf.h>
 #include <gpxe/list.h>
index 634977f7a435e715d7c0b6ea79be56303badf32b..3f8e54bb12190c7b6f6fc3797d7060492c69b4fa 100644 (file)
  */
 
 #include <stdint.h>
+#include <stdlib.h>
 #include <byteswap.h>
 #include <string.h>
 #include <errno.h>
-#include <malloc.h>
 #include <gpxe/if_ether.h>
 #include <gpxe/pkbuff.h>
 #include <gpxe/tables.h>