blob: e29d5e084fd8d2257f5002d11b8ec1233e766b5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/*
* PARSEC HEADER: sys_date.h
*/
#ifndef _SYS_DATE_H_
#define _SYS_DATE_H_
// external variables
extern const char build_text[];
extern const char build_date[];
extern const char build_time[];
extern const char build_comp[];
extern const char build_bind[];
extern const char build_endn[];
// external functions
char * SYS_SystemTime();
#endif // _SYS_DATE_H_
|