mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-07 06:14:33 +00:00
13 lines
285 B
C
Vendored
13 lines
285 B
C
Vendored
#ifndef UNISTD_H
|
|
#define UNISTD_H
|
|
|
|
#include "../../include/unistd.h"
|
|
|
|
extern char **__environ;
|
|
|
|
hidden int __dup3(int, int, int);
|
|
hidden int __mkostemps(char *, int, int);
|
|
hidden int __execvpe(const char *, char *const *, char *const *);
|
|
hidden off_t __lseek(int, off_t, int);
|
|
|
|
#endif
|