Blame extension/ext_custom.h

Packit Service f629e6
/*
Packit Service f629e6
 * ext_custom.h
Packit Service f629e6
 *
Packit Service f629e6
 * This file is for use on systems where Autoconf isn't quite able to
Packit Service f629e6
 * get things right. It is appended to the bottom of config.h by configure,
Packit Service f629e6
 * in order to override definitions from Autoconf that are erroneous. See
Packit Service f629e6
 * the manual for more information.
Packit Service f629e6
 *
Packit Service f629e6
 * If you make additions to this file for your system, please send
Packit Service f629e6
 * the information to bug-gawk@gnu.org.
Packit Service f629e6
 */
Packit Service f629e6
Packit Service f629e6
/* 
Packit Service f629e6
 * Copyright (C) 2015 the Free Software Foundation, Inc.
Packit Service f629e6
 * 
Packit Service f629e6
 * This file is part of GAWK, the GNU implementation of the
Packit Service f629e6
 * AWK Programming Language.
Packit Service f629e6
 * 
Packit Service f629e6
 * GAWK is free software; you can redistribute it and/or modify
Packit Service f629e6
 * it under the terms of the GNU General Public License as published by
Packit Service f629e6
 * the Free Software Foundation; either version 3 of the License, or
Packit Service f629e6
 * (at your option) any later version.
Packit Service f629e6
 * 
Packit Service f629e6
 * GAWK is distributed in the hope that it will be useful,
Packit Service f629e6
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service f629e6
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service f629e6
 * GNU General Public License for more details.
Packit Service f629e6
 * 
Packit Service f629e6
 * You should have received a copy of the GNU General Public License
Packit Service f629e6
 * along with this program; if not, write to the Free Software
Packit Service f629e6
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
Packit Service f629e6
 */
Packit Service f629e6
Packit Service f629e6
/* From Michal Jaegermann for bleeding edge GLIBC. */
Packit Service f629e6
#if defined _GNU_SOURCE && !defined _DEFAULT_SOURCE
Packit Service f629e6
# define _DEFAULT_SOURCE
Packit Service f629e6
#endif