diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-12-16 23:31:06 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-12-16 23:31:06 -0500 |
| commit | f07c07e551b89b66b14936ae4573e656fbd7afb6 (patch) | |
| tree | 3c9acb1228c7e74ce671661bf9c15616e0cfc7f7 /src/stdlib/reals.h | |
| parent | c5878cced02fd1ed7e7940eaf8eb8b4cce23a9d4 (diff) | |
Fix parens parsing and hook up sqrt
Diffstat (limited to 'src/stdlib/reals.h')
| -rw-r--r-- | src/stdlib/reals.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stdlib/reals.h b/src/stdlib/reals.h index 1d304aa5..8750fdbb 100644 --- a/src/stdlib/reals.h +++ b/src/stdlib/reals.h @@ -18,7 +18,7 @@ double Real$as_float64(Real_t x); Int_t Real$as_int(Real_t x); Real_t Real$negative(Real_t x); -// Real_t Real$inverse(Real_t x); +Real_t Real$sqrt(Real_t x); Real_t Real$plus(Real_t x, Real_t y); Real_t Real$minus(Real_t x, Real_t y); Real_t Real$times(Real_t x, Real_t y); |
