mirror of
https://github.com/lifegpc/c-utils.git
synced 2026-06-06 13:18:57 +08:00
9 lines
134 B
C
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;
|
|
}
|