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 | b22325617372cce77ac16a9bf89c87af33818f7d (patch) | |
tree | e55f919b802e38a0b3b9de621d8ce52691cdd880 /buf.c | |
parent | dfdb8754815c0f8d618e226bfb14cbf6b361e252 (diff) | |
download | txr-b22325617372cce77ac16a9bf89c87af33818f7d.tar.gz txr-b22325617372cce77ac16a9bf89c87af33818f7d.tar.bz2 txr-b22325617372cce77ac16a9bf89c87af33818f7d.zip |
ffi and buf porting: stdarg.h needed.
* buf.c, ffi.c: Must include <stdarg.h> for va_list.
Diffstat (limited to 'buf.c')
-rw-r--r-- | buf.c | 1 |
1 files changed, 1 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> |