diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-08-25 01:28:31 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-08-25 01:28:31 -0400 |
| commit | 6004f8eabb1a41e735a0e28d9b9b93c516526fb7 (patch) | |
| tree | c269b127f7f1db8bb7f68ce330da128661cc709d /src/parse/numbers.c | |
| parent | fbc6b59305d8414bb1cb471ea3f85a8d926beb4f (diff) | |
Less public
Diffstat (limited to 'src/parse/numbers.c')
| -rw-r--r-- | src/parse/numbers.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/parse/numbers.c b/src/parse/numbers.c index 39851f2a..c12a68b2 100644 --- a/src/parse/numbers.c +++ b/src/parse/numbers.c @@ -17,7 +17,6 @@ static const double RADIANS_PER_DEGREE = 0.0174532925199432957692369076848861271344287188854172545609719144; -public ast_t *parse_int(parse_ctx_t *ctx, const char *pos) { const char *start = pos; (void)match(&pos, "-"); @@ -51,7 +50,6 @@ ast_t *parse_int(parse_ctx_t *ctx, const char *pos) { return NewAST(ctx->file, start, pos, Int, .str = str); } -public ast_t *parse_num(parse_ctx_t *ctx, const char *pos) { const char *start = pos; bool negative = match(&pos, "-"); |
