File Coverage

glog.c
Criterion Covered Total %
statement 0 2 0.0
branch n/a
condition n/a
subroutine n/a
pod n/a
total 0 2 0.0


line stmt bran cond sub pod time code
1             #include "glog.h"
2              
3             #ifndef GLOG_SHOW
4              
5 0           void glog(const char* fmt, ...)
6             {
7 0           }
8              
9             #else
10              
11             #include
12             #include
13             #include
14              
15             void glog(const char* fmt, ...)
16             {
17             va_list args;
18             va_start(args, fmt);
19             fprintf(stderr, "{%lu} ", (unsigned long) getpid());
20             vfprintf(stderr, fmt, args);
21             fputc('\n', stderr);
22             fflush(stderr);
23             va_end(args);
24             }
25              
26             #endif