mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 03:27:39 +00:00
13 lines
251 B
C
13 lines
251 B
C
#ifndef MAKE_TIMELOG_H_
|
|
#define MAKE_TIMELOG_H_
|
|
|
|
struct timelog;
|
|
|
|
extern int timelog_fd;
|
|
extern char *timelog_path;
|
|
|
|
void timelog_init (void);
|
|
struct timelog *timelog_begin (char **);
|
|
void timelog_end (struct timelog *);
|
|
|
|
#endif /* MAKE_TIMELOG_H_ */
|