blob: 97755728492c45c0cfc494f821e8fd3ec75110ef (
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
|
#ifndef _LD_CONFIG_H
#define _LD_CONFIG_H
/* Use the internal textdomain used for libc messages. */
#define PACKAGE _libc_intl_domainname
#ifndef VERSION
/* Get libc version number. */
#include "../../version.h"
#endif
#define DEFAULT_CHARMAP "POSIX"
#ifndef PARAMS
# if __STDC__
# define PARAMS(args) args
# else
# define PARAMS(args) ()
# endif
#endif
#define HAVE_VPRINTF 1
#define HAVE_STRING_H 1
#include_next <config.h>
#endif
|