diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2017-05-11 22:59:42 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2017-05-11 22:59:42 -0700 |
commit | f89a431b109876989465613df85c56c0c7853ec8 (patch) | |
tree | e55f919b802e38a0b3b9de621d8ce52691cdd880 | |
parent | 459facaec99d9a7a27a68e85b0ff518bef214be5 (diff) | |
download | txr-f89a431b109876989465613df85c56c0c7853ec8.tar.gz txr-f89a431b109876989465613df85c56c0c7853ec8.tar.bz2 txr-f89a431b109876989465613df85c56c0c7853ec8.zip |
ffi and buf porting: stdarg.h needed.
* buf.c, ffi.c: Must include <stdarg.h> for va_list.
-rw-r--r-- | buf.c | 1 | ||||
-rw-r--r-- | ffi.c | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -31,6 +31,7 @@ #include <float.h> #include <string.h> #include <stdlib.h> +#include <stdarg.h> #include <signal.h> #include <stdio.h> #include <dirent.h> @@ -30,6 +30,7 @@ #include <stddef.h> #include <stdio.h> #include <stdlib.h> +#include <stdarg.h> #include <string.h> #include <signal.h> #include <wchar.h> |