Updating files somehow confused by CVS.

Old tree cvs reports up-to-date.
New tree - different ???
more to come...

svn path=/trunk/; revision=3807
This commit is contained in:
Robert Dickenson 2002-11-29 11:26:58 +00:00
parent 5f25774f6e
commit 2ebbba0d7d
16 changed files with 80 additions and 76 deletions

View file

@ -7,7 +7,7 @@
* UPDATE HISTORY: * UPDATE HISTORY:
* 28/12/98: Created * 28/12/98: Created
*/ */
#include <crtdll/ctype.h> #include <msvcrt/ctype.h>
#undef isalnum #undef isalnum

View file

@ -7,8 +7,8 @@
* UPDATE HISTORY: * UPDATE HISTORY:
* 28/12/98: Created * 28/12/98: Created
*/ */
#include <msvcrt/ctype.h>
#include <crtdll/ctype.h>
#undef isalpha #undef isalpha
int isalpha(int c) int isalpha(int c)

View file

@ -1,5 +1,6 @@
/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
#include <crtdll/ctype.h> #include <msvcrt/ctype.h>
#undef iscntrl #undef iscntrl
int iscntrl(int c) int iscntrl(int c)

View file

@ -7,8 +7,8 @@
* UPDATE HISTORY: * UPDATE HISTORY:
* 28/12/98: Created * 28/12/98: Created
*/ */
#include <msvcrt/ctype.h>
#include <crtdll/ctype.h>
int __iscsymf(int c) int __iscsymf(int c)
{ {

View file

@ -1,5 +1,6 @@
/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
#include <crtdll/ctype.h> #include <msvcrt/ctype.h>
#undef isdigit #undef isdigit
int isdigit(int c) int isdigit(int c)

View file

@ -1,5 +1,6 @@
/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
#include <crtdll/ctype.h> #include <msvcrt/ctype.h>
#undef islower #undef islower
int islower(int c) int islower(int c)

View file

@ -1,5 +1,6 @@
/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
#include <crtdll/ctype.h> #include <msvcrt/ctype.h>
#undef ispunct #undef ispunct
int ispunct(int c) int ispunct(int c)

View file

@ -1,5 +1,6 @@
/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
#include <crtdll/ctype.h> #include <msvcrt/ctype.h>
#undef isupper #undef isupper
int isupper(int c) int isupper(int c)

View file

@ -1,5 +1,6 @@
/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
#include <crtdll/ctype.h> #include <msvcrt/ctype.h>
#undef isxdigit #undef isxdigit
int isxdigit(int c) int isxdigit(int c)

View file

@ -1,6 +1,6 @@
/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
#include <crtdll/ctype.h> #include <msvcrt/ctype.h>
int __toascii(int c) int __toascii(int c)

View file

@ -1,9 +1,11 @@
#include <crtdll/float.h> #include <msvcrt/float.h>
#include <crtdll/internal/ieee.h> #include <msvcrt/internal/ieee.h>
double _chgsign(double __x) double _chgsign(double __x)
{ {
double_t* x = (double_t*)&x; double_t* x = (double_t*)&x;
if (x->sign == 1) if (x->sign == 1)
x->sign = 0; x->sign = 0;
else else

View file

@ -1,6 +1,7 @@
#include <crtdll/float.h> #include <msvcrt/float.h>
#include <crtdll/math.h> #include <msvcrt/math.h>
#include <crtdll/internal/ieee.h> #include <msvcrt/internal/ieee.h>
#define _FPCLASS_SNAN 0x0001 /* signaling NaN */ #define _FPCLASS_SNAN 0x0001 /* signaling NaN */
#define _FPCLASS_QNAN 0x0002 /* quiet NaN */ #define _FPCLASS_QNAN 0x0002 /* quiet NaN */
@ -58,8 +59,5 @@ fpclass_t _fpclass(double __d)
} }
} }
return 0; return 0;
} }

View file

@ -1,4 +1,5 @@
#include <crtdll/float.h> #include <msvcrt/float.h>
void _fpreset(void) void _fpreset(void)
{ {

View file

@ -16,9 +16,10 @@ License along with the GNU C Library; see the file COPYING.LIB. If
not, write to the Free Software Foundation, Inc., 675 Mass Ave, not, write to the Free Software Foundation, Inc., 675 Mass Ave,
Cambridge, MA 02139, USA. */ Cambridge, MA 02139, USA. */
#include <crtdll/math.h> #include <msvcrt/math.h>
#include <crtdll/float.h> #include <msvcrt/float.h>
#include <crtdll/internal/ieee.h> #include <msvcrt/internal/ieee.h>
int _isnan(double __x) int _isnan(double __x)
{ {
@ -28,7 +29,6 @@ int _isnan(double __x)
int _isnanl(long double __x) int _isnanl(long double __x)
{ {
/* Intel's extended format has the normally implicit 1 explicit /* Intel's extended format has the normally implicit 1 explicit
present. Sigh! */ present. Sigh! */
@ -43,15 +43,12 @@ int _isnanl(long double __x)
&& ((x->mantissah & (unsigned int)0x7fffffff) != 0 || x->mantissal != 0)); && ((x->mantissah & (unsigned int)0x7fffffff) != 0 || x->mantissal != 0));
} }
int _isinf(double __x) int _isinf(double __x)
{ {
double_t* x = (double_t*)&__x; double_t* x = (double_t*)&__x;
return (x->exponent == 0x7ff && (x->mantissah == 0 && x->mantissal == 0)); return (x->exponent == 0x7ff && (x->mantissah == 0 && x->mantissal == 0));
} }
int _finite(double x) int _finite(double x)
{ {
return !_isinf(x); return !_isinf(x);
@ -73,5 +70,3 @@ int _isinfl(long double __x)
return x->sign ? -1 : 1; return x->sign ? -1 : 1;
return 0; return 0;
} }

View file

@ -1,4 +1,5 @@
#include <crtdll/float.h> #include <msvcrt/float.h>
double _nextafter(double x, double y) double _nextafter(double x, double y)
{ {

View file

@ -1,5 +1,6 @@
#include <windows.h> #include <windows.h>
#include <crtdll/io.h> #include <msvcrt/io.h>
int _locking(int _fd, int mode, long nbytes) int _locking(int _fd, int mode, long nbytes)
{ {