mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-20 04:27:10 +00:00
#SwEng
fpclassify fix EntityManager: rename getExtant -> GetExtantAsHandles, fix its implementation+call site to avoid dynamic alloc/auto ptr, rename extant -> IsExtant vsnprintf2 -> sys_vsnprintf. remove printf.h (function is declared in sysdep header) use SUS/posix-ish strcasecmp instead of defining that to the windows-only stricmp add cppdoc for ia32/cpu This was SVN commit r5011.
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
|
||||
// See declaration in sysdep.h for explanation of need
|
||||
|
||||
int vsnprintf2(char* buffer, size_t count, const char* format, va_list argptr)
|
||||
int sys_vsnprintf(char* buffer, size_t count, const char* format, va_list argptr)
|
||||
{
|
||||
int ret = vsnprintf(buffer, count, format, argptr);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user