Module: wine Branch: master Commit: a8c19696f1c71d8b479fc3995d5539ef51e6bf47 URL: http://source.winehq.org/git/wine.git/?a=commit;h=a8c19696f1c71d8b479fc3995d...
Author: Michael Stefaniuc mstefani@redhat.de Date: Tue Sep 22 23:51:49 2009 +0200
kernel32: Add missing stdarg.h include.
This fixes a compile breakage with older gcc versions.
---
dlls/kernel32/cpu.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/dlls/kernel32/cpu.c b/dlls/kernel32/cpu.c index 40d3825..d08e429 100644 --- a/dlls/kernel32/cpu.c +++ b/dlls/kernel32/cpu.c @@ -22,6 +22,7 @@ #include "config.h" #include "wine/port.h"
+#include <stdarg.h> #include <stdio.h> #include <stdlib.h> #ifdef HAVE_SYS_TIME_H