Michael Stefaniuc : kernel32: Add missing stdarg.h includes.
Module: wine Branch: master Commit: 4f60b6bf91f1bf797a37bc860732c79a1ff813fb URL: http://source.winehq.org/git/wine.git/?a=commit;h=4f60b6bf91f1bf797a37bc8607... Author: Michael Stefaniuc <mstefani(a)redhat.de> Date: Wed Dec 30 23:36:56 2009 +0100 kernel32: Add missing stdarg.h includes. --- dlls/kernel32/module.c | 1 + dlls/kernel32/process.c | 1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/dlls/kernel32/module.c b/dlls/kernel32/module.c index aaa5551..ff3c3a5 100644 --- a/dlls/kernel32/module.c +++ b/dlls/kernel32/module.c @@ -22,6 +22,7 @@ #include "wine/port.h" #include <fcntl.h> +#include <stdarg.h> #include <stdio.h> #include <stdlib.h> #include <string.h> diff --git a/dlls/kernel32/process.c b/dlls/kernel32/process.c index e481e0c..92d645c 100644 --- a/dlls/kernel32/process.c +++ b/dlls/kernel32/process.c @@ -25,6 +25,7 @@ #include <ctype.h> #include <errno.h> #include <signal.h> +#include <stdarg.h> #include <stdio.h> #include <time.h> #ifdef HAVE_SYS_TIME_H
participants (1)
-
Alexandre Julliard