Skip to content

Commit 911e253

Browse files
committedApr 29, 2021
msvc: Move stdarg.h include ahead of __PHYSFS_msvc_vsnprintf declaration.
(transplanted from e0346f4349265b4e483b987a0694740474942bb0)
1 parent 48ffe8d commit 911e253

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed
 

‎src/physfs.c

-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
#include "physfs_internal.h"
1313

1414
#if defined(_MSC_VER)
15-
#include <stdarg.h>
16-
1715
/* this code came from https://stackoverflow.com/a/8712996 */
1816
int __PHYSFS_msvc_vsnprintf(char *outBuf, size_t size, const char *format, va_list ap)
1917
{

‎src/physfs_internal.h

+1
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ extern const PHYSFS_Archiver __PHYSFS_Archiver_VDF;
9595
/* a real C99-compliant snprintf() is in Visual Studio 2015,
9696
but just use this everywhere for binary compatibility. */
9797
#if defined(_MSC_VER)
98+
#include <stdarg.h>
9899
int __PHYSFS_msvc_vsnprintf(char *outBuf, size_t size, const char *format, va_list ap);
99100
int __PHYSFS_msvc_snprintf(char *outBuf, size_t size, const char *format, ...);
100101
#define vsnprintf __PHYSFS_msvc_vsnprintf

0 commit comments

Comments
 (0)
Please sign in to comment.