diff options
author | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2011-07-11 01:18:57 -0700 |
---|---|---|
committer | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2011-07-11 01:18:57 -0700 |
commit | 6bde974927ffce4f6d7acd8370c8a60b51454004 (patch) | |
tree | 4917f9c72b09dfa8fbc1ba42d556b657907f01a0 | |
parent | b3290392d9023f47b0840912311138ff58ecbfe3 (diff) | |
parent | e6cf455be504eead9dd8670041ff4e3765b4808f (diff) |
Merge pull request #54 from rtyler/pu
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> |