2002-12-10 Joel Sherrill <joel@OARcorp.com>
* libc/include/machine/setjmp.h: Make sure _JBLEN is defined for i386-rtems targets.
This commit is contained in:
parent
d6a24c4840
commit
ea01c7f5d2
|
@ -1,3 +1,8 @@
|
|||
2002-12-10 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
* libc/include/machine/setjmp.h: Make sure _JBLEN is defined
|
||||
for i386-rtems targets.
|
||||
|
||||
2002-12-06 Jeff Johnston <jjohnstn@redhat.com>
|
||||
|
||||
* libc/include/stdlib.h (strtof): New prototype (from C99).
|
||||
|
|
|
@ -52,8 +52,8 @@ _BEGIN_STD_C
|
|||
#if defined(__CYGWIN__) && !defined (_JBLEN)
|
||||
#define _JBLEN (13 * 4)
|
||||
#elif defined (__i386__)
|
||||
#ifdef __unix__
|
||||
# define _JBLEN 36
|
||||
#if defined(__unix__) || defined(__rtems__)
|
||||
# define _JBLEN 9
|
||||
#else
|
||||
#include "setjmp-dj.h"
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue