diff options
author | okan <okan> | 2013-12-17 16:12:18 +0000 |
---|---|---|
committer | okan <okan> | 2013-12-17 16:12:18 +0000 |
commit | 9b8dc1ba7f9af194a19f7cd1c34bfa051250cc18 (patch) | |
tree | 614892b372591035e5903b63a8bc69a2629a0c1c | |
parent | da2bea3ffac03b74709fa4d9d3f12582f1912917 (diff) | |
download | cwm-9b8dc1ba7f9af194a19f7cd1c34bfa051250cc18.tar.gz cwm-9b8dc1ba7f9af194a19f7cd1c34bfa051250cc18.tar.xz cwm-9b8dc1ba7f9af194a19f7cd1c34bfa051250cc18.zip |
missing stdarg.h include
-rw-r--r-- | xmalloc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xmalloc.c b/xmalloc.c index 0480c73..0f1d6f3 100644 --- a/xmalloc.c +++ b/xmalloc.c @@ -23,6 +23,7 @@ #include <err.h> #include <errno.h> +#include <stdarg.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> |