diff options
author | Colin Snover | 2016-12-19 10:36:49 -0600 |
---|---|---|
committer | Colin Snover | 2016-12-19 15:00:09 -0600 |
commit | 849e29dc8749b3d825bb522335cd40a8cf5ad191 (patch) | |
tree | 6acc4bf6d7bcbdd4ae1dcd0cbf083248ab0ed661 | |
parent | 2eadb3e92463c997c2ad81537db429ee063ad92e (diff) | |
download | scummvm-rg350-849e29dc8749b3d825bb522335cd40a8cf5ad191.tar.gz scummvm-rg350-849e29dc8749b3d825bb522335cd40a8cf5ad191.tar.bz2 scummvm-rg350-849e29dc8749b3d825bb522335cd40a8cf5ad191.zip |
COMMON: Add stddef.h to scummsys.h for ptrdiff_t
-rw-r--r-- | common/scummsys.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/scummsys.h b/common/scummsys.h index 959c67a404..1845f218bd 100644 --- a/common/scummsys.h +++ b/common/scummsys.h @@ -132,6 +132,7 @@ #include <stdlib.h> #include <string.h> #include <stdarg.h> + #include <stddef.h> #include <assert.h> #include <ctype.h> // MSVC does not define M_PI, M_SQRT2 and other math defines by default. |