forked from OpenSCAP/openscap
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Daniel Kopecek
committed
Jun 21, 2012
1 parent
4b4e938
commit bbd12ad
Showing
80 changed files
with
2,987 additions
and
982 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#if !defined _Noreturn && __STDC_VERSION__ < 201112 | ||
# if (3 <= __GNUC__ || (__GNUC__ == 2 && 8 <= __GNUC_MINOR__) \ | ||
|| 0x5110 <= __SUNPRO_C) | ||
# define _Noreturn __attribute__ ((__noreturn__)) | ||
# elif 1200 <= _MSC_VER | ||
# define _Noreturn __declspec (noreturn) | ||
# else | ||
# define _Noreturn | ||
# endif | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* Supplemental information about the floating-point formats. | ||
Copyright (C) 2007, 2009-2011 Free Software Foundation, Inc. | ||
Copyright (C) 2007, 2009-2012 Free Software Foundation, Inc. | ||
Written by Bruno Haible <[email protected]>, 2007. | ||
This program is free software; you can redistribute it and/or modify | ||
|
@@ -13,8 +13,7 @@ | |
GNU Lesser General Public License for more details. | ||
You should have received a copy of the GNU Lesser General Public License | ||
along with this program; if not, write to the Free Software Foundation, | ||
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ | ||
along with this program; if not, see <http://www.gnu.org/licenses/>. */ | ||
|
||
#ifndef _FLOATPLUS_H | ||
#define _FLOATPLUS_H | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/* Auxiliary definitions for <float.h>. | ||
Copyright (C) 2011-2012 Free Software Foundation, Inc. | ||
Written by Bruno Haible <[email protected]>, 2011. | ||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU Lesser General Public License as published by | ||
the Free Software Foundation; either version 3 of the License, or | ||
(at your option) any later version. | ||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU Lesser General Public License for more details. | ||
You should have received a copy of the GNU Lesser General Public License | ||
along with this program. If not, see <http://www.gnu.org/licenses/>. */ | ||
|
||
#include <config.h> | ||
|
||
/* Specification. */ | ||
#include <float.h> | ||
|
||
#if (defined _ARCH_PPC || defined _POWER) && (defined _AIX || defined __linux__) && (LDBL_MANT_DIG == 106) && defined __GNUC__ | ||
const union gl_long_double_union gl_LDBL_MAX = | ||
{ { DBL_MAX, DBL_MAX / (double)134217728UL / (double)134217728UL } }; | ||
#elif defined __i386__ | ||
const union gl_long_double_union gl_LDBL_MAX = | ||
{ { 0xFFFFFFFF, 0xFFFFFFFF, 32766 } }; | ||
#else | ||
/* This declaration is solely to ensure that after preprocessing | ||
this file is never empty. */ | ||
typedef int dummy; | ||
#endif |
Oops, something went wrong.