lua: add missing include files

These are actually already included in osdep/io.h, but I think it's
cleaner to repeat them in the file where they are actually needed.
(osdep/io.h needs to have them for other reasons.)
This commit is contained in:
wm4 2014-05-26 21:47:43 +02:00
parent 6f20d6b74e
commit fbe59b23b1
1 changed files with 2 additions and 0 deletions

View File

@ -18,6 +18,8 @@
#include <assert.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <dirent.h>
#include <math.h>