1
0
mirror of https://github.com/adtools/clib2.git synced 2025-12-08 14:59:05 +00:00

- Moved the data declarations out of math_data.c, stat_data.c,

socket_data.c, dirent_data.c and stdio_data.c and into the
  code that initializes them.


git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@14868 87f5fb63-7c3d-0410-a384-fd976d0f7a62
This commit is contained in:
Olaf Barthel
2005-03-09 10:48:59 +00:00
parent 0fad53e56e
commit cc8a8e42c0
15 changed files with 147 additions and 346 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: math_init_exit.c,v 1.9 2005-03-07 16:56:36 obarthel Exp $
* $Id: math_init_exit.c,v 1.10 2005-03-09 10:48:59 obarthel Exp $
*
* :ts=4
*
@ -57,6 +57,20 @@
/****************************************************************************/
#if defined(IEEE_FLOATING_POINT_SUPPORT)
struct Library * MathIeeeSingBasBase;
struct Library * MathIeeeDoubBasBase;
struct Library * MathIeeeDoubTransBase;
#endif /* IEEE_FLOATING_POINT_SUPPORT */
/****************************************************************************/
double __huge_val;
/****************************************************************************/
CLIB_DESTRUCTOR(__math_exit)
{
ENTER();