X-Git-Url: http://sjero.net/git/?p=wget;a=blobdiff_plain;f=src%2Flog.h;h=fdc9417f2e54b135777f2a19a052c563dbd807f3;hp=490d85fc6d7a4f9689c9a75ab2f267d9e914fd7d;hb=277e840a0f8e3ec8800cfe7407fe3c16000bc622;hpb=9000d2b527680b4b13964475d84df42815d40e37 diff --git a/src/log.h b/src/log.h index 490d85fc..fdc9417f 100644 --- a/src/log.h +++ b/src/log.h @@ -35,25 +35,20 @@ so, delete this exception statement from your version. */ enum log_options { LOG_VERBOSE, LOG_NOTQUIET, LOG_NONVERBOSE, LOG_ALWAYS }; -#ifdef HAVE_STDARG_H -void logprintf PARAMS ((enum log_options, const char *, ...)) +void logprintf (enum log_options, const char *, ...) GCC_FORMAT_ATTR (2, 3); -void debug_logprintf PARAMS ((const char *, ...)) GCC_FORMAT_ATTR (1, 2); -#else /* not HAVE_STDARG_H */ -void logprintf (); -void debug_logprintf (); -#endif /* not HAVE_STDARG_H */ -void logputs PARAMS ((enum log_options, const char *)); -void logflush PARAMS ((void)); -void log_set_flush PARAMS ((int)); -int log_set_save_context PARAMS ((int)); - -void log_init PARAMS ((const char *, int)); -void log_close PARAMS ((void)); -void log_cleanup PARAMS ((void)); -void log_request_redirect_output PARAMS ((const char *)); - -const char *escnonprint PARAMS ((const char *)); -const char *escnonprint_uri PARAMS ((const char *)); +void debug_logprintf (const char *, ...) GCC_FORMAT_ATTR (1, 2); +void logputs (enum log_options, const char *); +void logflush (void); +void log_set_flush (int); +int log_set_save_context (int); + +void log_init (const char *, int); +void log_close (void); +void log_cleanup (void); +void log_request_redirect_output (const char *); + +const char *escnonprint (const char *); +const char *escnonprint_uri (const char *); #endif /* LOG_H */