-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathglibc.h
38 lines (30 loc) · 930 Bytes
/
glibc.h
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
28
29
30
31
32
33
34
35
36
37
38
//========================================================================
//
// glibc.h
//
// Emulate various non-portable glibc functions.
//
// This file is licensed under the GPLv2 or later
//
// Copyright (C) 2016, 2017 Adrian Johnson <[email protected]>
// Copyright (C) 2017 Albert Astals Cid <[email protected]>
//
//========================================================================
#ifndef GLIBC_H
#define GLIBC_H
#include "config.h"
#include "poppler_private_export.h"
#include <ctime>
#ifndef HAVE_GMTIME_R
struct tm POPPLER_PRIVATE_EXPORT *gmtime_r(const time_t *timep, struct tm *result);
#endif
#ifndef HAVE_LOCALTIME_R
struct tm POPPLER_PRIVATE_EXPORT *localtime_r(const time_t *timep, struct tm *result);
#endif
#ifndef HAVE_TIMEGM
time_t POPPLER_PRIVATE_EXPORT timegm(struct tm *tm);
#endif
#ifndef HAVE_STRTOK_R
char *strtok_r(char *s, const char *delim, char **save_ptr);
#endif
#endif // GLIBC_H