swig/Examples/test-suite/li_cdata.i
Seth R Johnson feeb2516ae "Include what you use" for tests
Many of these tests implicitly required the target language library files to include the headers upstream.
2019-01-06 08:32:34 -05:00

12 lines
122 B
OpenEdge ABL

%module li_cdata
%include <cdata.i>
%cdata(int);
%cdata(double);
%{
#include <stdlib.h>
%}
void *malloc(size_t size);