blob: ce7887b3512f55fbe9f4bdeb3f25d82f3bfd33ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef _CG_CONFIG_H
#define _CG_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
#include_next <config.h>
#endif
|