test-shared: Add more shared tests
This commit is contained in:
parent
32ba4d07e2
commit
6affef76b1
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue