-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fatal error: 'malloc.h' file not found #2
Comments
Not quite sure what the change was. |
oops, looks like I didn't properly escape the characters: I thought this might be Mac OS specific so i didn't do a pull request |
Excellent, many thanks! |
Since you're already including stdlib.h, I think you can just remove the malloc.h include without any problem. http://stackoverflow.com/questions/12973311/difference-between-stdlib-h-and-malloc-h |
how do you make the file malloc.h before make the said changes? |
THANK YOU |
Nice little tool, I received the error: fatal error: 'malloc.h' file not found when i first tried to make the file on my Mac (10.10). I changed the line from #include <malloc.h> to #include <malloc/malloc.h>
Figured this might help someone
The text was updated successfully, but these errors were encountered: