7#ifndef ZEPHYR_INCLUDE_SYS_ERRNO_PRIVATE_H_ 
    8#define ZEPHYR_INCLUDE_SYS_ERRNO_PRIVATE_H_ 
   20#ifdef CONFIG_LIBC_ERRNO 
   23static inline int *z_errno(
void)
 
   28#elif defined(CONFIG_ERRNO_IN_TLS) 
   29extern __thread 
int z_errno_var;
 
   31static inline int *z_errno(
void)
 
   44__syscall 
int *z_errno(
void);
 
   52#if !defined(CONFIG_ERRNO_IN_TLS) && !defined(CONFIG_LIBC_ERRNO) 
   53#include <syscalls/errno_private.h> 
#define errno
Definition errno.h:38