The R Project SVN R

Rev

Rev 41464 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 41464 Rev 41626
Line 1... Line 1...
1
The changes for R are all to do with portability:
1
The changes for R are all to do with portability:
2
 
2
 
3
__inline__ is not portable.
3
__inline__ is not portable.  We make use of static inlining in the 
-
 
4
file bzlib.c and decompress.c to avoid issues with semantics of 
-
 
5
'extern inline'.
-
 
6
 
4
fdopen is POSIX but not C89
7
fdopen is POSIX but not C89
5
Solaris' cc objects to inlining functions with names starting with 'main'.
8
Solaris' cc objects to inlining functions with names starting with 'main'.
6
C character strings are limited to ca 500 chars.
9
C character strings are limited to ca 500 chars.
7
Various casts were missing.
10
Various casts were missing.
8
 
11