blob: 9b33df32b8ea35b0915cf09f52e8828f6c5e4733 [file] [log] [blame]
#ifndef AOS_LIBC_AOS_STRSIGNAL_H_
#define AOS_LIBC_AOS_STRSIGNAL_H_
#ifdef __cplusplus
extern "C" {
#endif
// Thread-safe version of strsignal(3) (except it will never return NULL).
//
// Returns a pointer to static data or a thread-local buffer.
const char *aos_strsignal(int signal);
#ifdef __cplusplus
}
#endif
#endif // AOS_LIBC_AOS_STRSIGNAL_H_