Home | History | Annotate | Download | only in lib

Lines Matching refs:strerror

0 /* strerror.c --- POSIX compatible system error routine
29 #include "strerror-override.h"
36 strerror (int n)
37 #undef strerror
42 /* Cast away const, due to the historical signature of strerror;
48 msg = strerror (n);
50 /* Our strerror_r implementation might use the system's strerror
51 buffer, so all other clients of strerror have to see the error
53 even if the system strerror is, but portable programs shouldn't
54 be using strerror if they care about thread-safety. */