Add missing includes for Windows

This commit is contained in:
Lassi Kortela 2019-08-19 01:20:02 +03:00
parent 69f46bd4c2
commit a6fd653000
2 changed files with 34 additions and 1 deletions

View File

@ -1,4 +1,35 @@
#include <windows.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <assert.h>
#include <ctype.h>
#include <errno.h>
#include <limits.h>
#include <math.h>
#include <setjmp.h>
#include <stdarg.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "dtypes.h"
#include "utils.h"
#include "utf8.h"
#include "ios.h"
#include "socket.h"
#include "timefuncs.h"
#include "hashing.h"
#include "htable.h"
#include "htableh_inc.h"
#include "bitvector.h"
#include "os.h"
#include "random.h"
#include "llt.h"
#include "flisp.h"
#include "os.h"

View File

@ -3,6 +3,8 @@
optimized for storing info about particular values
*/
#include <sys/types.h>
#include <assert.h>
#include <limits.h>
#include <stdint.h>