2024-09-05 12:59:48 +03:00
|
|
|
#include <errno.h>
|
2024-08-28 17:08:37 +03:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
2024-09-05 12:59:48 +03:00
|
|
|
printf("printf works\n");
|
|
|
|
fprintf(stdout, "fprintf(stdout) works!\n");
|
|
|
|
|
|
|
|
errno = ENOTSUP;
|
|
|
|
perror(nullptr);
|
2024-08-28 17:08:37 +03:00
|
|
|
}
|