feat: port lua scripting language

This commit is contained in:
2026-03-27 21:53:33 +01:00
parent ada6cdff47
commit 184519c06c
131 changed files with 46362 additions and 358 deletions
+19
View File
@@ -0,0 +1,19 @@
#ifndef _LIBC_SETJMP_H
#define _LIBC_SETJMP_H
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
typedef unsigned long jmp_buf[8];
int setjmp(jmp_buf env);
void longjmp(jmp_buf env, int val) __attribute__((noreturn));
#ifdef __cplusplus
}
#endif
#endif /* _LIBC_SETJMP_H */