// SPDX-FileCopyrightText: 2025, Alejandro Colomar // SPDX-License-Identifier: BSD-3-Clause #ifndef SHADOW_INCLUDE_LIB_STRING_STRERRNO_H_ #define SHADOW_INCLUDE_LIB_STRING_STRERRNO_H_ #include "config.h" #include #include // strerrno - string errno #define strerrno() ({(const char *){strerror(errno)};}) #endif // include guard