c0e157e3b2
One must build yasm (included in the yasm directory) before building GMP, if building on an x86_64 machine. Note: make test and make tune do not currently build.
8 lines
139 B
C++
8 lines
139 B
C++
/*!re2c
|
|
"print" {return PRINT;}
|
|
[a-z]+ {return ID;}
|
|
[0-9]+ {return DEC;}
|
|
"0x" [0-9a-f]+ {return HEX;}
|
|
[\000-\377] {return ERR;}
|
|
*/
|