Blame sysdeps/ieee754/dbl-64/mpsqrt.h

Packit 6c4009
/*
Packit 6c4009
 * IBM Accurate Mathematical Library
Packit 6c4009
 * Written by International Business Machines Corp.
Packit 6c4009
 * Copyright (C) 2001-2018 Free Software Foundation, Inc.
Packit 6c4009
 *
Packit 6c4009
 * This program is free software; you can redistribute it and/or modify
Packit 6c4009
 * it under the terms of the GNU Lesser General Public License as published by
Packit 6c4009
 * the Free Software Foundation; either version 2.1 of the License, or
Packit 6c4009
 * (at your option) any later version.
Packit 6c4009
 *
Packit 6c4009
 * This program is distributed in the hope that it will be useful,
Packit 6c4009
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 6c4009
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 6c4009
 * GNU Lesser General Public License for more details.
Packit 6c4009
 *
Packit 6c4009
 * You should have received a copy of the GNU Lesser General Public License
Packit 6c4009
 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Packit 6c4009
 */
Packit 6c4009
Packit 6c4009
/******************************************************************/
Packit 6c4009
/*                                                                */
Packit 6c4009
/* MODULE_NAME:mpatan.h                                           */
Packit 6c4009
/*                                                                */
Packit 6c4009
/* common data and variables prototype and definition             */
Packit 6c4009
/******************************************************************/
Packit 6c4009
Packit 6c4009
#ifndef MPSQRT_H
Packit 6c4009
#define MPSQRT_H
Packit 6c4009
Packit 6c4009
extern const int __mpsqrt_mp[33] attribute_hidden;
Packit 6c4009
Packit 6c4009
Packit 6c4009
#ifndef AVOID_MPSQRT_H
Packit 6c4009
  const int __mpsqrt_mp[33] = {0,0,0,0,1,2,2,2,2,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,
Packit 6c4009
			     4,4,4,4,4,4,4,4,4};
Packit 6c4009
#endif
Packit 6c4009
Packit 6c4009
#endif