diff options
author | Damien George <damien.p.george@gmail.com> | 2014-01-02 07:49:13 -0800 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-01-02 07:49:13 -0800 |
commit | 6b032642ece5d56557beb21a3e712fb6538d979e (patch) | |
tree | d675f861dc19219335ae4b1d646eb9db219df5a9 /unix/main.c | |
parent | 5d32983cb78355446b97722448de00862c120e46 (diff) | |
parent | 33fefc74a57bf974e052cf8035fe81fdd2df8087 (diff) | |
download | micropython-6b032642ece5d56557beb21a3e712fb6538d979e.tar.gz micropython-6b032642ece5d56557beb21a3e712fb6538d979e.zip |
Merge pull request #28 from vext01/openbsd
Make micropython build on OpenBSD.
Diffstat (limited to 'unix/main.c')
-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" |