kit

kit
git clone https://git.ryansepassi.com/git/kit.git
Log | Files | Refs | README

commit 5c3b6c310fe5a6c29007deca89a659d4a6f73438
parent 30a524f4c1142fe9ad5e3fd2ba3aed8afdcf3617
Author: Ryan Sepassi <rsepassi@gmail.com>
Date:   Tue, 19 May 2026 14:38:18 -0700

rm K&R fn defs expectations

Diffstat:
Dtest/parse/cases/6_9_14_kr_function_def_params.c | 10----------
Dtest/parse/cases/6_9_14_kr_function_def_params.expected | 1-
Dtest/parse/cases/6_9_15_kr_function_def_promoted_char.c | 9---------
Dtest/parse/cases/6_9_15_kr_function_def_promoted_char.expected | 1-
4 files changed, 0 insertions(+), 21 deletions(-)

diff --git a/test/parse/cases/6_9_14_kr_function_def_params.c b/test/parse/cases/6_9_14_kr_function_def_params.c @@ -1,10 +0,0 @@ -int add(a, b) -int a; -int b; -{ - return a + b; -} - -int test_main(void) { - return add(20, 22); -} diff --git a/test/parse/cases/6_9_14_kr_function_def_params.expected b/test/parse/cases/6_9_14_kr_function_def_params.expected @@ -1 +0,0 @@ -42 diff --git a/test/parse/cases/6_9_15_kr_function_def_promoted_char.c b/test/parse/cases/6_9_15_kr_function_def_promoted_char.c @@ -1,9 +0,0 @@ -int id_char(c) -char c; -{ - return c; -} - -int test_main(void) { - return id_char(42); -} diff --git a/test/parse/cases/6_9_15_kr_function_def_promoted_char.expected b/test/parse/cases/6_9_15_kr_function_def_promoted_char.expected @@ -1 +0,0 @@ -42