* Various formatting and whitespace changes.
This commit is contained in:
parent
1bf83a86f6
commit
bfc27bae1a
@ -486,7 +486,7 @@ case "${host}" in
|
|||||||
powerpc*-*-rtem* | \
|
powerpc*-*-rtem* | \
|
||||||
powerpc*-*-sysv* | \
|
powerpc*-*-sysv* | \
|
||||||
powerpc*-*-solaris*)
|
powerpc*-*-solaris*)
|
||||||
newlib_cflags="${newlib_cflags} -mrelocatable-lib -mno-eabi -mstrict-align -DMISSING_SYSCALL_NAMES"
|
newlib_cflags="${newlib_cflags} -mrelocatable-lib -mno-eabi -mstrict-align -DMISSING_SYSCALL_NAMES -DWANT_PRINTF_LONG_LONG"
|
||||||
;;
|
;;
|
||||||
powerpcle-*-pe)
|
powerpcle-*-pe)
|
||||||
newlib_cflags="${newlib_cflags} -DHAVE_OPENDIR -DHAVE_RENAME -DHAVE_FCNTL"
|
newlib_cflags="${newlib_cflags} -DHAVE_OPENDIR -DHAVE_RENAME -DHAVE_FCNTL"
|
||||||
|
@ -193,7 +193,6 @@
|
|||||||
#define __SMALL_BITFIELDS
|
#define __SMALL_BITFIELDS
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#ifndef __IEEE_BIG_ENDIAN
|
#ifndef __IEEE_BIG_ENDIAN
|
||||||
#ifndef __IEEE_LITTLE_ENDIAN
|
#ifndef __IEEE_LITTLE_ENDIAN
|
||||||
#error Endianess not declared!!
|
#error Endianess not declared!!
|
||||||
|
@ -145,7 +145,6 @@ typedef int jmp_buf[_JBLEN];
|
|||||||
#define _JBTYPE double
|
#define _JBTYPE double
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
#ifdef __fr30__
|
#ifdef __fr30__
|
||||||
#define _JBLEN 10
|
#define _JBLEN 10
|
||||||
#endif
|
#endif
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* This is file MKTEMP.C */
|
/* This is file MKTEMP.C */
|
||||||
/* This file may have been modified by DJ Delorie (Jan 1991). If so,
|
/* This file may have been modified by DJ Delorie (Jan 1991). If so,
|
||||||
** these modifications are Copyright (C) 1991 DJ Delorie
|
** these modifications are Copyright (C) 1991 DJ Delorie.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -35,7 +35,7 @@ variables vary from one system to another.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
/* This file may have been modified by DJ Delorie (Jan 1991). If so,
|
/* This file may have been modified by DJ Delorie (Jan 1991). If so,
|
||||||
** these modifications are Copyright (C) 1991 DJ Delorie
|
** these modifications are Copyright (C) 1991 DJ Delorie.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* This file may have been modified by DJ Delorie (Jan 1991). If so,
|
/* This file may have been modified by DJ Delorie (Jan 1991). If so,
|
||||||
** these modifications are Copyright (C) 1991 DJ Delorie
|
** these modifications are Copyright (C) 1991 DJ Delorie.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
|
@ -30,7 +30,7 @@ The corresponding declarations are in the header file @file{stdlib.h}.
|
|||||||
* mbtowc:: Minimal multibyte to wide character converter
|
* mbtowc:: Minimal multibyte to wide character converter
|
||||||
* qsort:: Sort an array
|
* qsort:: Sort an array
|
||||||
* rand:: Pseudo-random numbers
|
* rand:: Pseudo-random numbers
|
||||||
* rand48:: Uniformaly distributed pseudo-random numbers
|
* rand48:: Uniformly distributed pseudo-random numbers
|
||||||
* strtod:: String to double or float
|
* strtod:: String to double or float
|
||||||
* strtol:: String to long
|
* strtol:: String to long
|
||||||
* strtoul:: String to unsigned long
|
* strtoul:: String to unsigned long
|
||||||
|
@ -16,14 +16,14 @@ ANSI_SYNOPSIS
|
|||||||
|
|
||||||
TRAD_SYNOPSIS
|
TRAD_SYNOPSIS
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
long strtoll (<[s]>, <[ptr]>, <[base]>)
|
long long strtoll (<[s]>, <[ptr]>, <[base]>)
|
||||||
char *<[s]>;
|
const char *<[s]>;
|
||||||
char **<[ptr]>;
|
char **<[ptr]>;
|
||||||
int <[base]>;
|
int <[base]>;
|
||||||
|
|
||||||
long _strtoll_r (<[reent]>, <[s]>, <[ptr]>, <[base]>)
|
long long _strtoll_r (<[reent]>, <[s]>, <[ptr]>, <[base]>)
|
||||||
char *<[reent]>;
|
char *<[reent]>;
|
||||||
char *<[s]>;
|
const char *<[s]>;
|
||||||
char **<[ptr]>;
|
char **<[ptr]>;
|
||||||
int <[base]>;
|
int <[base]>;
|
||||||
|
|
||||||
|
@ -55,6 +55,7 @@ _mainCRTStartup:
|
|||||||
sub sl, sp, #64 << 10 /* Still assumes 256bytes below sl */
|
sub sl, sp, #64 << 10 /* Still assumes 256bytes below sl */
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
/* Zero the memory in the .bss section. */
|
||||||
mov a2, #0 /* Second arg: fill value */
|
mov a2, #0 /* Second arg: fill value */
|
||||||
mov fp, a2 /* Null frame pointer */
|
mov fp, a2 /* Null frame pointer */
|
||||||
mov r7, a2 /* Null frame pointer for Thumb */
|
mov r7, a2 /* Null frame pointer for Thumb */
|
||||||
@ -259,4 +260,3 @@ CommandLine: .space 256,0 /* Maximum length of 255 chars handled. */
|
|||||||
.section .idata$3
|
.section .idata$3
|
||||||
.long 0,0,0,0,0,0,0,0
|
.long 0,0,0,0,0,0,0,0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -58,4 +58,3 @@ int mkfifo(const char *path, mode_t mode)
|
|||||||
dev_t dev = 0;
|
dev_t dev = 0;
|
||||||
return __mknod(path, mode | S_IFIFO, &dev);
|
return __mknod(path, mode | S_IFIFO, &dev);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -11,11 +11,11 @@
|
|||||||
* ====================================================
|
* ====================================================
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* CYGNUS LOCAL: Include files. */
|
/* REDHAT LOCAL: Include files. */
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <machine/ieeefp.h>
|
#include <machine/ieeefp.h>
|
||||||
|
|
||||||
/* CYGNUS LOCAL: Default to XOPEN_MODE. */
|
/* REDHAT LOCAL: Default to XOPEN_MODE. */
|
||||||
#define _XOPEN_MODE
|
#define _XOPEN_MODE
|
||||||
|
|
||||||
/* Most routines need to check whether a float is finite, infinite, or not a
|
/* Most routines need to check whether a float is finite, infinite, or not a
|
||||||
|
@ -179,7 +179,7 @@ ivln2_l = 1.92596299112661746887e-08; /* 0x3E54AE0B, 0xF85DDF44 =1/ln2 tail*/
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* (x<0)**(non-int) is NaN */
|
/* (x<0)**(non-int) is NaN */
|
||||||
/* CYGNUS LOCAL: This used to be
|
/* REDHAT LOCAL: This used to be
|
||||||
if((((hx>>31)+1)|yisint)==0) return (x-x)/(x-x);
|
if((((hx>>31)+1)|yisint)==0) return (x-x)/(x-x);
|
||||||
but ANSI C says a right shift of a signed negative quantity is
|
but ANSI C says a right shift of a signed negative quantity is
|
||||||
implementation defined. */
|
implementation defined. */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user