test-shared: Add more shared tests

This commit is contained in:
Bananymous 2024-09-05 12:59:48 +03:00
parent 32ba4d07e2
commit 6affef76b1
1 changed files with 6 additions and 1 deletions

View File

@ -1,6 +1,11 @@
#include <errno.h>
#include <stdio.h>
int main()
{
printf("printf works!\n");
printf("printf works\n");
fprintf(stdout, "fprintf(stdout) works!\n");
errno = ENOTSUP;
perror(nullptr);
}