7#ifndef ZEPHYR_INCLUDE_SYS_ERRNO_PRIVATE_H_
8#define ZEPHYR_INCLUDE_SYS_ERRNO_PRIVATE_H_
21#ifdef CONFIG_LIBC_ERRNO
24static inline int *z_errno(
void)
29#elif defined(CONFIG_ERRNO_IN_TLS)
30extern Z_THREAD_LOCAL
int z_errno_var;
32static inline int *z_errno(
void)
45__syscall
int *z_errno(
void);
53#if !defined(CONFIG_ERRNO_IN_TLS) && !defined(CONFIG_LIBC_ERRNO)
54#include <zephyr/syscalls/errno_private.h>
#define errno
Definition errno.h:37