Browse Source

Bugfix: httpsrv: Add missing includes for stdarg, stddef, stdio, and stdlib

Luke Dashjr 12 years ago
parent
commit
c356b26658
1 changed files with 4 additions and 0 deletions
  1. 4 0
      httpsrv.c

+ 4 - 0
httpsrv.c

@@ -13,7 +13,11 @@
 #include <winsock2.h>
 #include <winsock2.h>
 #endif
 #endif
 
 
+#include <stdarg.h>
+#include <stddef.h>
 #include <stdint.h>
 #include <stdint.h>
+#include <stdio.h>
+#include <stdlib.h>
 
 
 #ifndef WIN32
 #ifndef WIN32
 #include <sys/types.h>
 #include <sys/types.h>