summaryrefslogtreecommitdiff
path: root/goo/glibc.h
blob: ccbd87364ebae0b9f8c4a63337b2cf40ed9ffca0 (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
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 <ajohnson@redneon.com>
// Copyright (C) 2017 Albert Astals Cid <aacid@kde.org>
//
//========================================================================

#ifndef GLIBC_H
#define GLIBC_H

#include "config.h"

#include <time.h>

#ifndef HAVE_GMTIME_R
struct tm *gmtime_r(const time_t *timep, struct tm *result);
#endif

#ifndef HAVE_LOCALTIME_R
struct tm *localtime_r(const time_t *timep, struct tm *result);
#endif

#ifndef HAVE_TIMEGM
time_t timegm(struct tm *tm);
#endif

#ifndef HAVE_STRTOK_R
char * strtok_r (char *s, const char *delim, char **save_ptr);
#endif

#endif // GLIBC_H