aboutsummaryrefslogtreecommitdiff
path: root/bc_funcs/std.bc
blob: a369505dcb30f7e3530c6ded4ad9d6afb89b1be1 (plain) (blame)
1
2
3
4
5
define abs(x) {
	if (x < 0)
		x *= -1
	return x
}