diff options
author | William S Fulton <wsf@fultondesigns.co.uk> | 2008-04-05 23:17:05 +0000 |
---|---|---|
committer | William S Fulton <wsf@fultondesigns.co.uk> | 2008-04-05 23:17:05 +0000 |
commit | b89d50d52c71a5432d413abd55bb1698c94c1b79 (patch) | |
tree | 62f4aa1fd5d579b5c9c2472f689ce35f5f931479 /Examples/lua/embed2 | |
parent | 7f5e24cacb3a0dbfebdde54b61c996e2409b0b27 (diff) | |
download | swig-b89d50d52c71a5432d413abd55bb1698c94c1b79.tar.gz |
add missing header
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10355 626c5289-ae23-0410-ae9c-e8d60b6d4f22
Diffstat (limited to 'Examples/lua/embed2')
-rw-r--r-- | Examples/lua/embed2/embed2.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Examples/lua/embed2/embed2.c b/Examples/lua/embed2/embed2.c index e0010d28e..07b7a44d2 100644 --- a/Examples/lua/embed2/embed2.c +++ b/Examples/lua/embed2/embed2.c @@ -18,6 +18,7 @@ We will be using the luaL_dostring()/lua_dostring() function to call into lua #include <lauxlib.h>
#include <lualib.h>
#include <stdarg.h>
+#include <string.h>
/* the SWIG wrappered library */
|