stub some things

This commit is contained in:
nora 2023-10-01 16:42:44 +02:00
parent 609c5e6e3d
commit 3a98a2b822
7 changed files with 84 additions and 11 deletions

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

@ -0,0 +1,7 @@
#include<string.h>
int main(void) {
char buf[10];
memset(buf, 0, sizeof(buf));
}