package embox.compat.libc

static module math_simple extends embox.compat.libc.math {
	source "math_private.h"

	source "abs.c"
	source "fmod.c", "modf.c"

    @Cflags("-O2")
	@Cflags("-fno-sanitize=undefined")
	source "log.c", "pow.c"
	source "sqrt.c"
	source "floor.c"
	source "ceil.c"
	source "round.c", "roundl.c"
	source "signbit.c"
	source "exp.c"

	@NoRuntime depends math_builtins_header
}
