mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-07 13:30:16 +00:00
22 lines
542 B
C
22 lines
542 B
C
// This is separate because the files being compiled with it use different compiler settings which may affect how the header is compiled
|
|
#include <stddef.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <float.h>
|
|
#include <math.h>
|
|
#include <limits.h>
|
|
#include <stdarg.h>
|
|
#include <errno.h>
|
|
#include <ctype.h>
|
|
#include <stdint.h>
|
|
#include <zlib.h>
|
|
#include <new>
|
|
#include <algorithm>
|
|
#include <sys/stat.h>
|
|
#include <sys/types.h>
|
|
#include <cassert>
|
|
#include <direct.h>
|
|
#include <io.h>
|
|
#include <limits>
|
|
#include <fcntl.h>
|