- fixed missing stdlib.h and string.h includes everywhere
- removed a couple of unneeded stdlib.h and stdio.h includes
diff --git a/objects/brush.c b/objects/brush.c
index cb2fa90..ebe4e97 100644
--- a/objects/brush.c
+++ b/objects/brush.c
@@ -4,7 +4,7 @@
* Copyright 1993, 1994 Alexandre Julliard
*/
-#include <stdlib.h>
+#include <string.h>
#include "winbase.h"
#include "brush.h"
#include "bitmap.h"
diff --git a/objects/clipping.c b/objects/clipping.c
index 99316cf..428aa27 100644
--- a/objects/clipping.c
+++ b/objects/clipping.c
@@ -4,6 +4,7 @@
* Copyright 1993 Alexandre Julliard
*/
+#include <stdlib.h>
#include "dc.h"
#include "metafile.h"
#include "region.h"
diff --git a/objects/pen.c b/objects/pen.c
index 21578f1..3621c33 100644
--- a/objects/pen.c
+++ b/objects/pen.c
@@ -4,6 +4,7 @@
* Copyright 1993 Alexandre Julliard
*/
+#include <string.h>
#include "pen.h"
#include "debug.h"
diff --git a/objects/region.c b/objects/region.c
index 89baa0f..3e32b81 100644
--- a/objects/region.c
+++ b/objects/region.c
@@ -80,6 +80,8 @@
* the y-x-banding that's so nice to have...
*/
+#include <stdlib.h>
+#include <string.h>
#include "region.h"
#include "winuser.h"
#include "debug.h"
diff --git a/objects/text.c b/objects/text.c
index 52b359e..286824a 100644
--- a/objects/text.c
+++ b/objects/text.c
@@ -5,7 +5,7 @@
*
*/
-#include <stdlib.h>
+#include <string.h>
#include "wingdi.h"
#include "winuser.h"
#include "wine/winuser16.h"