glibc/tests/Regression/ESTALE-error-message-translation-regression-from-RHEL7/estale-test.c
2024-03-05 11:43:40 +01:00

15 lines
195 B
C

#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;
}