diff options
Diffstat (limited to 'src/interfaces/odbc/misc.h')
-rw-r--r-- | src/interfaces/odbc/misc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/odbc/misc.h b/src/interfaces/odbc/misc.h index 10cb5114d13..0cbe92856b1 100644 --- a/src/interfaces/odbc/misc.h +++ b/src/interfaces/odbc/misc.h @@ -45,7 +45,7 @@ #else #define MYLOGDIR "c:" #endif - void mylog(); /* prototype */ + extern void mylog(char * fmt, ...); #else #ifndef WIN32 #define mylog(args...) /* GNU convention for variable arguments */ @@ -61,7 +61,7 @@ #else #define QLOGDIR "c:" #endif - void qlog(); /* prototype */ + extern void qlog(char * fmt, ...); #else #ifndef WIN32 #define qlog(args...) /* GNU convention for variable arguments */ |