summaryrefslogtreecommitdiffstats
path: root/ffi.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2017-05-11 22:59:42 -0700
committerKaz Kylheku <kaz@kylheku.com>2017-05-11 22:59:42 -0700
commitb22325617372cce77ac16a9bf89c87af33818f7d (patch)
treee55f919b802e38a0b3b9de621d8ce52691cdd880 /ffi.c
parentdfdb8754815c0f8d618e226bfb14cbf6b361e252 (diff)
downloadtxr-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 'ffi.c')
-rw-r--r--ffi.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ffi.c b/ffi.c
index 7cccbd30..ab640591 100644
--- a/ffi.c
+++ b/ffi.c
@@ -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>