summaryrefslogtreecommitdiff
path: root/include/time.h
blob: 732d33f59823210ece304fc69f028d68df88e838 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _TIME_H
#define _TIME_H

#include <stdint.h>

#ifndef _TIME_T
#define _TIME_T
typedef int32_t time_t;
#endif

time_t time(void);

void sleep(time_t);

#endif