mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 06:53:33 +00:00
14 lines
251 B
C
14 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_ */
|