glibc/tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/estale-test.c

15 lines
195 B
C
Raw Normal View History

2023-09-11 23:15:40 +00:00
#include <stdio.h>
#include <locale.h>
#include <errno.h>
int
main (void)
{
setlocale (LC_ALL, "");
errno = ESTALE;
perror ("ESTALE");
errno = EAGAIN;
perror ("EAGAIN");
return 0;
}