COMMON: Add inttypes.h to common/scummsys.h

This commit is contained in:
Cameron Cawley 2024-07-03 22:34:26 +01:00
parent 8ee953e910
commit 42903e7e6e
7 changed files with 7 additions and 0 deletions

View File

@ -29,6 +29,7 @@
#include <stddef.h>
#include <assert.h>
#include <ctype.h>
#include <inttypes.h>
#include <limits.h>
#define _USE_MATH_DEFINES
#include <math.h>

View File

@ -29,6 +29,7 @@
#include <stddef.h>
#include <assert.h>
#include <ctype.h>
#include <inttypes.h>
#include <limits.h>
#include <math.h>
#include <new>

View File

@ -39,6 +39,7 @@ typedef unsigned int uint;
#include <stddef.h>
#include <assert.h>
#include <ctype.h>
#include <inttypes.h>
#include <limits.h>
#include <math.h>
#include <new>

View File

@ -22,6 +22,7 @@
#include <assert.h>
#include <ctype.h>
#include <fcntl.h>
#include <inttypes.h>
#include <limits.h>
#include <math.h>
#include <new>

View File

@ -32,6 +32,7 @@
#include <stddef.h>
// No assert.h
#include <ctype.h>
#include <inttypes.h>
#include <limits.h>
#include <math.h>
#include <new>

View File

@ -38,6 +38,7 @@
#include <stddef.h>
#include <assert.h>
#include <ctype.h>
#include <inttypes.h>
#include <limits.h>
#include <math.h>
#include <new>

View File

@ -123,6 +123,7 @@
#include <stddef.h>
#include <assert.h>
#include <ctype.h>
#include <inttypes.h>
#include <limits.h>
// MSVC does not define M_PI, M_SQRT2 and other math defines by default.
// _USE_MATH_DEFINES must be defined in order to have these defined, thus