Skip to content
Snippets Groups Projects
Commit 1082d2225d6a authored by Ryan Dwyer's avatar Ryan Dwyer
Browse files

Modified __GNUC__ vsnprintf prototype declaration to exclude OSX

parent 8a73323cd97b
No related branches found
No related tags found
No related merge requests found
...@@ -2755,7 +2755,7 @@ ...@@ -2755,7 +2755,7 @@
#define START_VSNBUFF (256) #define START_VSNBUFF (256)
#else #else
#ifdef __GNUC__ #if defined(__GNUC__) && !defined(__APPLE__)
/* Something is making gcc complain about this prototype not being here, so /* Something is making gcc complain about this prototype not being here, so
I've just gone ahead and put it in. */ I've just gone ahead and put it in. */
extern int vsnprintf (char *buf, size_t count, const char *format, va_list arg); extern int vsnprintf (char *buf, size_t count, const char *format, va_list arg);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment