Files
c-utils/test_strerror_r.c
2021-12-16 09:29:17 +08:00

9 lines
134 B
C

#include <string.h>
int main() {
char buf[280];
char* s = strerror_r(ENOENT, buf, 280);
printf("%s", s);
return 0;
}