[srvx-commits] CVS: services/src saxdb.c,1.1,1.2
Brought to you by:
entrope
From: Entrope <en...@us...> - 2001-09-10 19:29:50
|
Update of /cvsroot/srvx/services/src In directory usw-pr-cvs1:/tmp/cvs-serv3737/src Modified Files: saxdb.c Log Message: clean up compile under gcc-3.0 Index: saxdb.c =================================================================== RCS file: /cvsroot/srvx/services/src/saxdb.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** saxdb.c 2001/08/01 22:14:35 1.1 --- saxdb.c 2001/09/10 19:29:47 1.2 *************** *** 30,42 **** #if HAVE_GETC_UNLOCKED ! #undef getc(STR) #define getc(STR) getc_unlocked(STR) #endif #if HAVE_PUTC_UNLOCKED ! #undef putc(STR) #define putc(CHR,STR) putc_unlocked(CHR,STR) #endif #if HAVE_FEOF_UNLOCKED ! #undef feof(STR) #define feof(STR) feof_unlocked(STR) #endif --- 30,42 ---- #if HAVE_GETC_UNLOCKED ! #undef getc #define getc(STR) getc_unlocked(STR) #endif #if HAVE_PUTC_UNLOCKED ! #undef putc #define putc(CHR,STR) putc_unlocked(CHR,STR) #endif #if HAVE_FEOF_UNLOCKED ! #undef feof #define feof(STR) feof_unlocked(STR) #endif |