Skip to content
Snippets Groups Projects
Commit 771deb6d authored by Sebastien Ponce's avatar Sebastien Ponce Committed by Steven Murray
Browse files

Cleanup of many useless ifdefs.

In particular, dropped all code related to unsupported platforms.
Note that it has been verified that this commit is a noop for the compiled code as the preprocessed code is unchanged (modulo some line numbers).
parent 2761a900
Branches
Tags
No related merge requests found
......@@ -22,14 +22,6 @@ int DLL_DECL Csnprintf(char *str, size_t size, const char *format, ...) {
int DLL_DECL Cvsnprintf(char *str, size_t size, const char *format, va_list args)
{
#if (defined(__osf__) && defined(__alpha))
return(vsprintf(str, format, args));
#else
#if defined(_WIN32)
return(_vsnprintf(str, size, format, args));
#else
return(vsnprintf(str, size, format, args));
#endif
#endif
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment