Merge pull request #442 from okuoku/patch-ast

ast.c: #include <stdlib.h> for setenv()
This commit is contained in:
Alex Shinn 2017-11-13 22:08:55 +09:00 committed by GitHub
commit 7562cc195e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,6 +5,7 @@
#include <chibi/eval.h> #include <chibi/eval.h>
#ifndef PLAN9 #ifndef PLAN9
#include <stdlib.h>
#include <errno.h> #include <errno.h>
#endif #endif