The R Project SVN R

Rev

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

Rev 71371 Rev 71373
Line 29... Line 29...
29
#ifndef RINTERFACE_H_
29
#ifndef RINTERFACE_H_
30
#define RINTERFACE_H_
30
#define RINTERFACE_H_
31
 
31
 
32
#ifdef __cplusplus
32
#ifdef __cplusplus
33
# include <cstdio>
33
# include <cstdio>
34
# ifdef __SUNPRO_CC
-
 
35
using std::FILE;
-
 
36
# endif
-
 
37
extern "C" {
34
extern "C" {
38
#else
35
#else
39
# include <stdio.h>
36
# include <stdio.h>
40
#endif
37
#endif
41
 
38
 
Line 84... Line 81...
84
 
81
 
85
void process_site_Renviron(void);
82
void process_site_Renviron(void);
86
void process_system_Renviron(void);
83
void process_system_Renviron(void);
87
void process_user_Renviron(void);
84
void process_user_Renviron(void);
88
 
85
 
-
 
86
#ifdef __cplusplus
-
 
87
extern std::FILE * R_Consolefile;
-
 
88
extern std::FILE * R_Outputfile;
-
 
89
#else
89
extern FILE * R_Consolefile;
90
extern FILE * R_Consolefile;
90
extern FILE * R_Outputfile;
91
extern FILE * R_Outputfile;
91
 
92
#endif
92
 
93
 
93
/* in ../unix/sys-unix.c */
94
/* in ../unix/sys-unix.c */
94
void R_setStartTime(void);
95
void R_setStartTime(void);
95
void fpu_setup(Rboolean);
96
void fpu_setup(Rboolean);
96
 
97