glibc/locale/programs/config.h
Ulrich Drepper 93d63a591c Update.
1998-11-11  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>

	* locale/programs/config.h: Define HAVE_STRING_H for xstrdup.c.
1998-11-13 13:27:37 +00:00

30 lines
446 B
C

#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