1 |
3dacdcc2
|
ploc
|
function real_to_int (in1: real) returns (out: int) prototype C;
|
2 |
|
|
function int_to_real (in1: int) returns (out: real) prototype C;
|
3 |
e5d77428
|
ploc
|
|
4 |
|
|
function _Floor (in1: real) returns (out: int) prototype C lib m;
|
5 |
|
|
function _floor (in1: real) returns (out: real) prototype C lib m;
|
6 |
|
|
function _Ceiling (in1: real) returns (out: int) prototype C lib m;
|
7 |
|
|
function _ceil (in1: real) returns (out: real) prototype C lib m;
|
8 |
|
|
function _Round (in1: real) returns (out: int) prototype C lib m;
|
9 |
|
|
function _round (in1: real) returns (out: real) prototype C lib m;
|