diff options
Diffstat (limited to 'src/ckerrlog.h')
-rw-r--r-- | src/ckerrlog.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ckerrlog.h b/src/ckerrlog.h index bf0c0a5..a4cc9e1 100644 --- a/src/ckerrlog.h +++ b/src/ckerrlog.h @@ -48,12 +48,12 @@ X(logv) \ X(help) -extern void initialize_errlog(int argc, const char** argv); -extern void report_errlog(); -extern void errlog_set_verbose(int level); +void initialize_errlog(int argc, const char** argv); +void report_errlog(); +void errlog_set_verbose(int level); #define X(stream) \ - extern void ck## stream(const char *log, ...); \ + void ck## stream(const char *log, ...); \ void ck## stream ##_with_delim(const char *d,const char *txt, ...); \ void report_## stream(); CK_STREAMS |