diff options
author | Edd Barrett <vext01@gmail.com> | 2014-01-01 23:14:36 +0000 |
---|---|---|
committer | Edd Barrett <vext01@gmail.com> | 2014-01-01 23:14:36 +0000 |
commit | 8146aea8ef59b2096d17b37dc4924dec0bd2e7cb (patch) | |
tree | d10de5b90b2dee98f18b4c51b7057b0443649133 | |
parent | 8bbd112938636270c16d5628d1f3efea599407c3 (diff) | |
download | micropython-8146aea8ef59b2096d17b37dc4924dec0bd2e7cb.tar.gz micropython-8146aea8ef59b2096d17b37dc4924dec0bd2e7cb.zip |
malloc.h is obsolete.
-rw-r--r-- | unix/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/main.c b/unix/main.c index 79fe1b5153..376dbc0c04 100644 --- a/unix/main.c +++ b/unix/main.c @@ -1,7 +1,7 @@ #include <stdint.h> #include <stdio.h> #include <string.h> -#include <malloc.h> +#include <stdlib.h> #include "nlr.h" #include "misc.h" |