Blame locale/programs/config.h

Packit Service 82fcde
/* Configuration for localedef program.
Packit Service 82fcde
   Copyright (C) 1995-2018 Free Software Foundation, Inc.
Packit Service 82fcde
   This file is part of the GNU C Library.
Packit Service 82fcde
   Contributed by Ulrich Drepper <drepper@cygnus.com>, 1995.
Packit Service 82fcde
Packit Service 82fcde
   This program is free software; you can redistribute it and/or modify
Packit Service 82fcde
   it under the terms of the GNU General Public License as published
Packit Service 82fcde
   by the Free Software Foundation; version 2 of the License, or
Packit Service 82fcde
   (at your option) any later version.
Packit Service 82fcde
Packit Service 82fcde
   This program is distributed in the hope that it will be useful,
Packit Service 82fcde
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 82fcde
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service 82fcde
   GNU General Public License for more details.
Packit Service 82fcde
Packit Service 82fcde
   You should have received a copy of the GNU General Public License
Packit Service 82fcde
   along with this program; if not, see <http://www.gnu.org/licenses/>.  */
Packit Service 82fcde
Packit Service 82fcde
#ifndef _LD_CONFIG_H
Packit Service 82fcde
#define _LD_CONFIG_H	1
Packit Service 82fcde
Packit Service 82fcde
/* Use the internal textdomain used for libc messages.  */
Packit Service 82fcde
#define PACKAGE _libc_intl_domainname
Packit Service 82fcde
#ifndef VERSION
Packit Service 82fcde
/* Get libc version number.  */
Packit Service 82fcde
#include "../../version.h"
Packit Service 82fcde
#endif
Packit Service 82fcde
Packit Service 82fcde
#define DEFAULT_CHARMAP "ANSI_X3.4-1968" /* ASCII */
Packit Service 82fcde
Packit Service 82fcde
/* This must be one higer than the last used LC_xxx category value.  */
Packit Service 82fcde
#define __LC_LAST	13
Packit Service 82fcde
Packit Service 82fcde
#include_next <config.h>
Packit Service 82fcde
#endif