diff options
author | Andrea Canciani <ranma42@gmail.com> | 2011-06-15 10:31:53 +0200 |
---|---|---|
committer | Andrea Canciani <ranma42@gmail.com> | 2011-06-20 10:24:20 +0200 |
commit | b9d9ca281c9b686ea6df2b211b6100095640063e (patch) | |
tree | 109006a9ea82ebf0c391e6d372a1642e4749d16a /test/cairo-test.c | |
parent | 00a5a136123cf2b66c5e8fc9fb5d20feffbd4dcd (diff) |
Avoid deprecated functions on win32
Some POSIX functions are deprecated in MSVC and should instead be used
with an alternative name beginning with '_'.
Diffstat (limited to 'test/cairo-test.c')
-rw-r--r-- | test/cairo-test.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/test/cairo-test.c b/test/cairo-test.c index b438e0718..3d834c233 100644 --- a/test/cairo-test.c +++ b/test/cairo-test.c @@ -73,9 +73,6 @@ #ifdef _MSC_VER #include <crtdbg.h> -#define vsnprintf _vsnprintf -#define access _access -#define unlink _unlink #define F_OK 0 #endif |