win: remove unnecessary malloc.h #includes

Several windows .c files are including malloc.h unnecessarily.
This commit removes #includes that should have been removed
when we switched over to uv__malloc and uv__free (in commit
c272f1f1bc).

PR-URL: https://github.com/libuv/libuv/pull/270
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
This commit is contained in:
Brett Vickers 2015-03-13 17:32:07 -07:00 committed by Ben Noordhuis
parent 96814fe606
commit 43ac8e17fe
7 changed files with 0 additions and 7 deletions

View File

@ -22,7 +22,6 @@
#include <assert.h>
#include <errno.h>
#include <limits.h>
#include <malloc.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

View File

@ -21,7 +21,6 @@
#include <assert.h>
#include <errno.h>
#include <malloc.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>

View File

@ -20,7 +20,6 @@
*/
#include <assert.h>
#include <malloc.h>
#include <errno.h>
#include <stdio.h>
#include <string.h>

View File

@ -21,7 +21,6 @@
#include <assert.h>
#include <stdlib.h>
#include <malloc.h>
#include <direct.h>
#include <errno.h>
#include <fcntl.h>

View File

@ -20,7 +20,6 @@
*/
#include <assert.h>
#include <malloc.h>
#include "uv.h"
#include "internal.h"

View File

@ -20,7 +20,6 @@
*/
#include <assert.h>
#include <malloc.h>
#include <stdio.h>
#include "uv.h"

View File

@ -22,7 +22,6 @@
#include <assert.h>
#include <direct.h>
#include <limits.h>
#include <malloc.h>
#include <stdio.h>
#include <string.h>
#include <time.h>