diff options
author | R. Tyler Croy <tyler@monkeypox.org> | 2011-07-07 14:22:26 -0700 |
---|---|---|
committer | R. Tyler Croy <tyler@monkeypox.org> | 2011-07-10 21:04:03 -0700 |
commit | e6cf455be504eead9dd8670041ff4e3765b4808f (patch) | |
tree | 4917f9c72b09dfa8fbc1ba42d556b657907f01a0 | |
parent | b3290392d9023f47b0840912311138ff58ecbfe3 (diff) |
Include stdlib.h in async.c for free(3), realloc(3) and strtol(3) support
-rw-r--r-- | async.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -30,6 +30,7 @@ */ #include "fmacros.h" +#include <stdlib.h> #include <string.h> #include <strings.h> #include <assert.h> |