mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-05-03 12:14:44 +00:00
Add some missing prototypes (#142)
This commit is contained in:
parent
6682013d12
commit
9e98d6893d
1 changed files with 14 additions and 0 deletions
|
@ -61,6 +61,20 @@ int mprotect(void *, uint64_t, int) privileged;
|
||||||
int msync(void *, size_t, int);
|
int msync(void *, size_t, int);
|
||||||
void *sbrk(intptr_t);
|
void *sbrk(intptr_t);
|
||||||
int brk(void *);
|
int brk(void *);
|
||||||
|
long fpathconf(int, int);
|
||||||
|
long pathconf(const char *, int);
|
||||||
|
int getgroups(int, uint32_t[]);
|
||||||
|
long gethostid(void);
|
||||||
|
int sethostid(long);
|
||||||
|
char *getlogin(void);
|
||||||
|
int getlogin_r(char *, size_t);
|
||||||
|
int lchown(const char *, uint32_t, uint32_t);
|
||||||
|
int getpagesize(void);
|
||||||
|
int syncfs(int);
|
||||||
|
int vhangup(void);
|
||||||
|
int getdtablesize(void);
|
||||||
|
int sethostname(const char *, size_t);
|
||||||
|
int acct(const char *);
|
||||||
|
|
||||||
bool _isheap(void *);
|
bool _isheap(void *);
|
||||||
int NtGetVersion(void);
|
int NtGetVersion(void);
|
||||||
|
|
Loading…
Add table
Reference in a new issue