mirror of
https://salsa.debian.org/xorg-team/lib/pixman
synced 2026-02-05 05:49:16 +00:00
Fix build of check-formats on MSVC
Fixes check-formats.obj : error LNK2019: unresolved external symbol _strcasecmp referenced in function _format_from_string check-formats.obj : error LNK2019: unresolved external symbol _snprintf referenced in function _list_operators
This commit is contained in:
parent
96ad6ebd8b
commit
e4d9c623d3
@ -6,6 +6,11 @@
|
||||
#include "pixman-private.h" /* For 'inline' definition */
|
||||
#include "utils-prng.h"
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
#define snprintf _snprintf
|
||||
#define strcasecmp _stricmp
|
||||
#endif
|
||||
|
||||
#define ARRAY_LENGTH(A) ((int) (sizeof (A) / sizeof ((A) [0])))
|
||||
|
||||
/* A primitive pseudorandom number generator,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user