Berry failed port attempt leftovers :(
All checks were successful
Build documentation / build-and-deploy (push) Successful in 3m9s

This commit is contained in:
2026-03-08 23:35:41 +01:00
parent ed4db21cf2
commit bea4ddd2c8
22 changed files with 218 additions and 26 deletions

12
libaux/setjmp.h Normal file
View File

@@ -0,0 +1,12 @@
#ifndef _LIBAUX_SETJMP_H
#define _LIBAUX_SETJMP_H
#if defined(__x86_64__)
typedef void* jmp_buf[10];
#endif
__attribute__ ((naked, returns_twice)) int setjmp (jmp_buf buf);
__attribute__ ((naked, noreturn)) void longjmp (jmp_buf buf, int ret);
#endif // _LIBAUX_SETJMP_H