1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright (C) 2014 Samsung Electronics
4 * Przemyslaw Marczak <p.marczak@samsung.com>
9 #include <linux/errno.h>
13 #define __set_errno(val) do { errno = val; } while (0)
15 #ifdef CONFIG_ERRNO_STR
16 const char *errno_str(int errno);
18 static inline const char *errno_str(int errno)