forked from M-Labs/artiq
1
0
Fork 0

runtime: export floor() in ksupport. Closes #828

This commit is contained in:
Sebastien Bourdeauducq 2017-09-10 12:09:25 +08:00
parent 34bc8e3c03
commit 5c5f86cdea
1 changed files with 4 additions and 2 deletions

View File

@ -18,8 +18,9 @@
#include "dds.h"
#include "i2c.h"
double round(double x);
double sqrt(double x);
double round(double x);
double floor(double x);
void ksupport_abort(void);
static void attribute_writeback(void *);
@ -88,8 +89,9 @@ static const struct symbol runtime_exports[] = {
{"__powidf2", &__powidf2},
/* libm */
{"round", &round},
{"sqrt", &sqrt},
{"round", &round},
{"floor", &floor},
/* exceptions */
{"_Unwind_Resume", &_Unwind_Resume},