[Libsysio-commit] HEAD: libsysio/include sysio.h
Brought to you by:
lward
From: Lee W. <lw...@us...> - 2008-04-07 19:22:04
|
Update of /cvsroot/libsysio/libsysio/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3950 Modified Files: sysio.h Log Message: Oops. Forgot to declare _sysio_diag_printf only if NDEBUG was not defined. Index: sysio.h =================================================================== RCS file: /cvsroot/libsysio/libsysio/include/sysio.h,v retrieving revision 1.44 retrieving revision 1.45 diff -u -w -b -B -p -r1.44 -r1.45 --- sysio.h 7 Apr 2008 18:59:48 -0000 1.44 +++ sysio.h 7 Apr 2008 19:22:00 -0000 1.45 @@ -153,7 +153,9 @@ extern char * _sysio_get_args(char *buf, extern time_t _sysio_local_time(void); extern void _sysio_cprintf(const char *fmt, ...); +#ifndef NDEBUG extern void _sysio_diag_printf(const char *funidnam, const char *fmt, ...); +#endif /* * The following should be defined by the system includes, and probably are, |