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:
Jeff Johnston 2002-12-10 19:46:49 +00:00
parent d6a24c4840
commit ea01c7f5d2
2 changed files with 7 additions and 2 deletions

View File

@ -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).

View File

@ -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