~ubuntu-branches/ubuntu/vivid/logrotate/vivid

« back to all changes in this revision

Viewing changes to log.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2008-11-07 14:57:09 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20081107145709-s8ktufsiktmkuidl
Tags: 3.7.7-1ubuntu1
* Merge with Debian experimental (LP: #64964). Remaining Ubuntu changes:
  - debian/control: Drop mailx to Suggests for Ubuntu; it's only used on
    request, and we don't configure an MTA by default.

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);