This commit is contained in:
nora 2023-10-01 15:28:22 +02:00
parent 9d74d9120c
commit 2f0191768f
6 changed files with 44 additions and 6 deletions

7
tests/c/errno.c Normal file
View file

@ -0,0 +1,7 @@
//@ignore doens't initialize fs yet
#include<errno.h>
int main(void) {
int err = errno;
return err;
}