[Liboss-commit] CVS: liboss/lib esddsp.c,1.24,1.25
Brought to you by:
thesin
|
From: Alexander S. <mrv...@us...> - 2003-02-22 19:50:25
|
Update of /cvsroot/liboss/liboss/lib
In directory sc8-pr-cvs1:/tmp/cvs-serv30218/lib
Modified Files:
esddsp.c
Log Message:
Fixing cpp-precomp lameness
Index: esddsp.c
===================================================================
RCS file: /cvsroot/liboss/liboss/lib/esddsp.c,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- esddsp.c 19 Jan 2003 19:47:14 -0000 1.24
+++ esddsp.c 22 Feb 2003 19:50:21 -0000 1.25
@@ -22,9 +22,9 @@
#endif
#ifdef DSP_DEBUG
-#define DPRINTF(format, args...) printf(format, ## args)
+#define DPRINTF printf
#else
-#define DPRINTF(format, args...)
+static inline void DPRINTF(char *format, ...) {return;}
#endif
#include "config.h"
|