search for: mkfloat

Displaying 3 results from an estimated 3 matches for "mkfloat".

Did you mean: mfloat
1999 Nov 23
1
compile error for mkString on alpha (PR#332)
...) (143.205.61.73) I had to apply the following patch to be able to compile on an alpha with DU 4.0E: ############################################### --- ./src/main/gram.y.mkString-patch Tue Nov 23 12:16:29 1999 +++ ./src/main/gram.y Tue Nov 23 12:16:59 1999 @@ -56,7 +56,8 @@ SEXP mkFloat(char *); SEXP mkInteger(char *); SEXP mkNA(void); -SEXP mkString(const char *); +typedef const char cchar; +SEXP mkString(cchar *); SEXP mkTrue(void); /* Internal lexer / parser state variables */ @@ -1362,7 +1363,7 @@ } -SEXP mkString(co...
2007 May 01
2
integer constants given by hexadecimal notation (PR#9648)
On 01/05/2007 7:21 AM, Stephan wrote: > Hi, > >> 0x10L > returns: int 0 > > I would expect: int 16? > This happens with all integer constants given by hexadecimal notation. > It's a bug? Certainly looks like one; I've cc'd this to the bug list (but won't be able to look into fixing it). Duncan Murdoch > > >> sessionInfo() > R
1999 Nov 13
0
patches for alpha
...matchPar(char*, SEXP*); SEXP mkChar(const char*); -SEXP mkString(const char*); +SEXP mkString(char*); SEXP namesgets(SEXP, SEXP); int ncols(SEXP); int nrows(SEXP); --- ./src/main/gram.y.alpha-patch Tue Aug 10 10:56:17 1999 +++ ./src/main/gram.y Sun Sep 12 17:38:27 1999 @@ -56,7 +56,10 @@ SEXP mkFloat(char *); SEXP mkInteger(char *); SEXP mkNA(void); -SEXP mkString(const char *); +/* problems with multiple declarations of mkString in DEC cc ?:*/ +#ifndef _R_INTERNALS_H_ +SEXP mkString(char *); +#endif SEXP mkTrue(void); /* Internal lexer / parser state variables */ @@ -1362,7 +1365,7...