diff options
author | shmel1k <shmel1k@ydb.tech> | 2022-09-02 12:44:59 +0300 |
---|---|---|
committer | shmel1k <shmel1k@ydb.tech> | 2022-09-02 12:44:59 +0300 |
commit | 90d450f74722da7859d6f510a869f6c6908fd12f (patch) | |
tree | 538c718dedc76cdfe37ad6d01ff250dd930d9278 /contrib/libs/libf2c/i_ceiling.c | |
parent | 01f64c1ecd0d4ffa9e3a74478335f1745f26cc75 (diff) | |
download | ydb-90d450f74722da7859d6f510a869f6c6908fd12f.tar.gz |
[] add metering mode to CLI
Diffstat (limited to 'contrib/libs/libf2c/i_ceiling.c')
-rw-r--r-- | contrib/libs/libf2c/i_ceiling.c | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/contrib/libs/libf2c/i_ceiling.c b/contrib/libs/libf2c/i_ceiling.c new file mode 100644 index 0000000000..f708a8b76e --- /dev/null +++ b/contrib/libs/libf2c/i_ceiling.c @@ -0,0 +1,36 @@ +#include "f2c.h" + +#ifdef KR_headers +integer i_sceiling(x) real *x; +#else +#ifdef __cplusplus +extern "C" { +#endif +integer i_sceiling(real *x) +#endif +{ +#define CEIL(x) ((int)(x) + ((x) > 0 && (x) != (int)(x))) + + return (integer) CEIL(*x); +} +#ifdef __cplusplus +} +#endif + + +#ifdef KR_headers +integer i_dceiling(x) doublereal *x; +#else +#ifdef __cplusplus +extern "C" { +#endif +integer i_dceiling(doublereal *x) +#endif +{ +#define CEIL(x) ((int)(x) + ((x) > 0 && (x) != (int)(x))) + + return (integer) CEIL(*x); +} +#ifdef __cplusplus +} +#endif |