summaryrefslogtreecommitdiff
path: root/lib/stubs.c
blob: 7419647cc93a92ceea70cff56e4671cb3a1b2981 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/* XXX Portable shared libraries require rpmlib to contain these functions. */

#include "system.h"

#if !defined(HAVE_BASENAME)
#include "misc/basename.c"
#endif

#if !defined(HAVE_GETCWD)
#include "misc/getcwd.c"
#endif

#if !defined(HAVE_GETWD)
#include "misc/getwd.c"
#endif

#if !defined(HAVE_PUTENV)
#include "misc/putenv.c"
#endif

#if !defined(HAVE_REALPATH)
#include "misc/realpath.c"
#endif

#if !defined(HAVE_STPCPY)
#include "misc/stpcpy.c"
#endif

#if !defined(HAVE_STPNCPY)
#include "misc/stpncpy.c"
#endif

#if !defined(HAVE_STRCASECMP)
#include "misc/strcasecmp.c"
#endif

#if !defined(HAVE_STRNCASECMP)
#include "misc/strncasecmp.c"
#endif

#if !defined(HAVE_STRCSPN)
#include "misc/strcspn.c"
#endif

#if !defined(HAVE_STRSPN)
#include "misc/strdup.c"
#endif

#if !defined(HAVE_STRERROR)
#include "misc/error.c"
#endif

#if !defined(HAVE_STRTOL)
#include "misc/strtol.c"
#endif

#if !defined(HAVE_STRTOUL)
#include "misc/strtoul.c"
#endif

#if !defined(HAVE_STRSPN)
#include "misc/strspn.c"
#endif

#if !defined(HAVE_STRSTR)
#include "misc/strstr.c"
#endif