Browse Source

Added check for WIN32_VC

Dave Schuyler 24 years ago
parent
commit
d4c848e8c7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      panda/src/pnm/libpbm1.c

+ 1 - 1
panda/src/pnm/libpbm1.c

@@ -16,7 +16,7 @@
 #include "version.h"
 #include "compile.h"
 #include "libpbm.h"
-#if __STDC__
+#if defined(__STDC__) || defined(WIN32_VC)
 #include <stdarg.h>
 #else /*__STDC__*/
 #include <varargs.h>