summaryrefslogtreecommitdiff
path: root/include/time.h
blob: feb2225b408f5396bb5eeefb311ad95bff56db45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#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);

int alarm(unsigned int seconds);

void sleep(time_t);

#endif