zig build lint fmt

This commit is contained in:
2026-02-10 10:36:40 +00:00
parent 2948cfd7cf
commit f08f4404ed
2 changed files with 2 additions and 2 deletions

View File

@@ -1162,7 +1162,7 @@ static AstNodeIndex expectTopLevelDecl(Parser* p) {
return 0; // make tcc happy
}
void findNextContainerMember(Parser* p) {
static void findNextContainerMember(Parser* p) {
uint32_t level = 0;
while (true) {

2
zig0.c
View File

@@ -6,7 +6,7 @@
// - code = 0: program successfully terminated.
// - code = 1: panicked, panic message in msg. Caller should free msg.
// - code = 2: interpreter error, error in msg. Caller should free msg.
int zig0Run(const char* program, char** msg) {
static int zig0Run(const char* program, char** msg) {
(void)program;
(void)msg;
return 0;