From: <st...@us...> - 2003-06-13 22:44:45
|
Update of /cvsroot/iaxclient/iaxclient/lib/sox In directory sc8-pr-cvs1:/tmp/cvs-serv6342/sox Modified Files: soxcompat.c Log Message: MSVC doesn't define __STDC__ for some reason? Index: soxcompat.c =================================================================== RCS file: /cvsroot/iaxclient/iaxclient/lib/sox/soxcompat.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- soxcompat.c 4 Jun 2003 19:26:39 -0000 1.1 +++ soxcompat.c 13 Jun 2003 22:44:42 -0000 1.2 @@ -2,7 +2,7 @@ #include "sox.h" #include <stdio.h> -#ifdef __STDC__ +#if defined(__STDC__) || defined(_MSC_VER) #include <stdarg.h> #else #include <varargs.h> |