From: <laz...@us...> - 2004-02-28 07:56:52
|
Update of /cvsroot/rtk/rtk/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17692/test Modified Files: test.h Log Message: - Fixed string stuff for W32..... - printf convert defined as macro and uses alloca now PLEASE do not ANY GNU GCC specific code, e.g. in test.h PRINTF macro.. There's no way in this world compile vector test.. So, I changed PRINTF macro to what MS VCPP support, though no idea about gcc... Index: test.h =================================================================== RCS file: /cvsroot/rtk/rtk/test/test.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** test.h 26 Feb 2004 20:01:16 -0000 1.5 --- test.h 28 Feb 2004 07:39:44 -0000 1.6 *************** *** 26,30 **** } ! #define PRINTF(fmt,rest...) rprintf(_R(" ") fmt, #rest) #endif --- 26,31 ---- } ! /*#define PRINTF(fmt,rest...) rprintf(_R(" ") fmt, #rest)*/ ! #define PRINTF(printf_exp) rprintf printf_exp #endif |