repo.or.cz
/
haiku.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
docs/ikteam: Delete most files.
[haiku.git]
/
headers
/
compatibility
/
bsd
/
time.h
blob
ff0fb0ec7ba11f7d744802c91b150d449a0ccfad
1
/*
2
* Copyright 2006-2010 Haiku Inc. All Rights Reserved.
3
* Distributed under the terms of the MIT License.
4
*/
5
#ifndef _BSD_TIME_H_
6
#define _BSD_TIME_H_
7
8
9
#include_next <time.h>
10
11
12
#ifdef _BSD_SOURCE
13
14
15
#ifdef __cplusplus
16
extern
"C"
{
17
#endif
18
19
time_t
timelocal
(
struct
tm
*
tm
);
20
time_t
timegm
(
struct
tm
*
tm
);
21
22
#ifdef __cplusplus
23
}
24
#endif
25
26
27
#endif
28
29
30
#endif
/* _BSD_TIME_H_ */