~vcs-imports/logrotate/trunk

« back to all changes in this revision

Viewing changes to log.h

  • Committer: pvrabec
  • Date: 2005-11-12 19:07:56 UTC
  • Revision ID: svn-v4:ec1272ba-9ed1-42ef-8245-99669996828e:trunk:225
- new upstream release
- indent sources

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
 
13
13
#define LOG_TIMES       (1 << 0)
14
14
 
15
 
void message(int level, char * format, ...)
 
15
void message(int level, char *format, ...)
16
16
#ifdef __GNUC__
17
 
       __attribute__ ((format (printf, 2, 3)));
 
17
    __attribute__ ((format(printf, 2, 3)));
18
18
#else
19
 
       ;
 
19
;
20
20
#endif
21
21
#if 0
22
 
void log(int fd, char * format, ...);
 
22
void log(int fd, char *format, ...);
23
23
#endif
24
24
void logSetErrorFile(FILE * f);
25
25
void logSetMessageFile(FILE * f);