The R Project SVN R

Rev

Rev 51758 | Rev 52035 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 51758 Rev 51838
Line 226... Line 226...
226
#define	R_VSIZE		6291456L
226
#define	R_VSIZE		6291456L
227
#endif
227
#endif
228
 
228
 
229
/* some commonly needed headers */
229
/* some commonly needed headers */
230
#include <math.h>
230
#include <math.h>
231
#include <float.h>
-
 
232
#include <ctype.h>
-
 
233
#include <stdlib.h>
231
#include <stdlib.h>
234
#include <string.h>
232
#include <string.h>
235
 
233
 
236
/* declare substitutions */
234
/* declare substitutions */
237
#if !defined(acosh) && defined(HAVE_DECL_ACOSH) && !HAVE_DECL_ACOSH
235
#if !defined(acosh) && defined(HAVE_DECL_ACOSH) && !HAVE_DECL_ACOSH
Line 592... Line 590...
592
#else
590
#else
593
# define INI_as(v)
591
# define INI_as(v)
594
#define extern0 extern
592
#define extern0 extern
595
#endif
593
#endif
596
 
594
 
597
/* extern int	errno; already have errno.h ! */
-
 
598
extern int	gc_inhibit_torture INI_as(1);
595
extern int	gc_inhibit_torture INI_as(1);
599
 
596
 
600
LibExtern Rboolean R_interrupts_suspended INI_as(FALSE);
597
LibExtern Rboolean R_interrupts_suspended INI_as(FALSE);
601
LibExtern int R_interrupts_pending INI_as(0);
598
LibExtern int R_interrupts_pending INI_as(0);
602
 
599