gzdoom/src/g_pch2.h

24 lines
556 B
C
Raw Normal View History

// This is separate because the files being compiled with it use different compiler settings which may affect how the header is compiled
2023-05-29 03:29:24 +00:00
#pragma once
#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>
2023-09-17 11:48:39 +00:00
#include <miniz.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>