test-shared: Add more shared tests

This commit is contained in:
2024-09-05 12:59:48 +03:00
parent 32ba4d07e2
commit 6affef76b1

View File

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