diff options
author | Neil <nyamatongwe@gmail.com> | 2016-03-07 09:49:53 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2016-03-07 09:49:53 +1100 |
commit | 98e216dbae4e4d5dc174378406f9d5488ad09335 (patch) | |
tree | e46d8a477593c75176309d573f89b37eeca4c2d6 | |
parent | 0dc85c15010480e078766065a7bb61883fb44132 (diff) | |
download | scintilla-mirror-98e216dbae4e4d5dc174378406f9d5488ad09335.tar.gz |
Include stddef.h as using ptrdiff_t and stddef.h is its home.
-rw-r--r-- | win32/PlatWin.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/win32/PlatWin.cxx b/win32/PlatWin.cxx index be27739c1..53b101e32 100644 --- a/win32/PlatWin.cxx +++ b/win32/PlatWin.cxx @@ -5,6 +5,7 @@ // Copyright 1998-2003 by Neil Hodgson <neilh@scintilla.org> // The License.txt file describes the conditions under which this software may be distributed. +#include <stddef.h> #include <stdlib.h> #include <string.h> #include <stdio.h> |