6#ifndef ZEPHYR_INCLUDE_POSIX_UNISTD_H_
7#define ZEPHYR_INCLUDE_POSIX_UNISTD_H_
11#ifdef CONFIG_NETWORKING
16#ifdef CONFIG_POSIX_API
24#ifdef CONFIG_POSIX_API
26extern int close(
int file);
27extern ssize_t write(
int file,
const void *buffer,
size_t count);
28extern ssize_t read(
int file,
void *buffer,
size_t count);
29extern off_t lseek(
int file,
off_t offset,
int whence);
32extern int rename(
const char *old,
const char *newp);
33extern int unlink(
const char *path);
34extern int stat(
const char *path,
struct stat *buf);
37FUNC_NORETURN
void _exit(
int status);
39#ifdef CONFIG_NETWORKING
49int getopt(
int argc,
char *
const argv[],
const char *optstring);
51extern int opterr, optind, optopt;
54unsigned sleep(
unsigned int seconds);
static int gethostname(char *buf, size_t len)
POSIX wrapper for zsock_gethostname.
Definition: socket.h:931
static int close(int sock)
POSIX wrapper for zsock_close.
Definition: socket.h:766
int zsock_gethostname(char *buf, size_t len)
Get local host name.
int mkdir(const char *_path, mode_t __mode)
__SIZE_TYPE__ ssize_t
Definition: types.h:28
__INTPTR_TYPE__ off_t
Definition: types.h:36
unsigned int mode_t
Definition: types.h:14
BSD Sockets compatible API definitions.
unsigned long useconds_t
Definition: posix_types.h:25
int usleep(useconds_t useconds)
unsigned sleep(unsigned int seconds)