mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-06 03:08:31 +00:00
Remove _Hide keyword
It never did anything and isn't worthwhile as documentation.
This commit is contained in:
parent
4fb6cbc1fe
commit
e0c2b91b3e
131 changed files with 716 additions and 917 deletions
|
@ -6,26 +6,26 @@
|
|||
COSMOPOLITAN_C_START_
|
||||
/* clang-format off */
|
||||
|
||||
int __sys_clock_nanosleep(int, int, const struct timespec *, struct timespec *) _Hide;
|
||||
int __sys_utimensat(int, const char *, const struct timespec[2], int) _Hide;
|
||||
int __utimens(int, const char *, const struct timespec[2], int) _Hide;
|
||||
int sys_clock_getres(int, struct timespec *) _Hide;
|
||||
int __sys_clock_nanosleep(int, int, const struct timespec *, struct timespec *);
|
||||
int __sys_utimensat(int, const char *, const struct timespec[2], int);
|
||||
int __utimens(int, const char *, const struct timespec[2], int);
|
||||
int sys_clock_getres(int, struct timespec *);
|
||||
int sys_clock_settime(int, const struct timespec *);
|
||||
int sys_clock_gettime(int, struct timespec *) _Hide;
|
||||
int sys_clock_gettime_nt(int, struct timespec *) _Hide;
|
||||
int sys_clock_gettime_m1(int, struct timespec *) _Hide;
|
||||
int sys_clock_gettime_xnu(int, struct timespec *) _Hide;
|
||||
int sys_clock_nanosleep_nt(int, int, const struct timespec *, struct timespec *) _Hide;
|
||||
int sys_clock_nanosleep_openbsd(int, int, const struct timespec *, struct timespec *) _Hide;
|
||||
int sys_clock_nanosleep_xnu(int, int, const struct timespec *, struct timespec *) _Hide;
|
||||
int sys_futimens(int, const struct timespec[2]) _Hide;
|
||||
int sys_nanosleep(const struct timespec *, struct timespec *) _Hide;
|
||||
int sys_nanosleep_nt(const struct timespec *, struct timespec *) _Hide;
|
||||
int sys_nanosleep_xnu(const struct timespec *, struct timespec *) _Hide;
|
||||
int sys_sem_timedwait(int64_t, const struct timespec *) _Hide;
|
||||
int sys_utimensat(int, const char *, const struct timespec[2], int) _Hide;
|
||||
int sys_utimensat_nt(int, const char *, const struct timespec[2], int) _Hide;
|
||||
int sys_utimensat_xnu(int, const char *, const struct timespec[2], int) _Hide;
|
||||
int sys_clock_gettime(int, struct timespec *);
|
||||
int sys_clock_gettime_nt(int, struct timespec *);
|
||||
int sys_clock_gettime_m1(int, struct timespec *);
|
||||
int sys_clock_gettime_xnu(int, struct timespec *);
|
||||
int sys_clock_nanosleep_nt(int, int, const struct timespec *, struct timespec *);
|
||||
int sys_clock_nanosleep_openbsd(int, int, const struct timespec *, struct timespec *);
|
||||
int sys_clock_nanosleep_xnu(int, int, const struct timespec *, struct timespec *);
|
||||
int sys_futimens(int, const struct timespec[2]);
|
||||
int sys_nanosleep(const struct timespec *, struct timespec *);
|
||||
int sys_nanosleep_nt(const struct timespec *, struct timespec *);
|
||||
int sys_nanosleep_xnu(const struct timespec *, struct timespec *);
|
||||
int sys_sem_timedwait(int64_t, const struct timespec *);
|
||||
int sys_utimensat(int, const char *, const struct timespec[2], int);
|
||||
int sys_utimensat_nt(int, const char *, const struct timespec[2], int);
|
||||
int sys_utimensat_xnu(int, const char *, const struct timespec[2], int);
|
||||
|
||||
const char *DescribeTimespec(char[45], int, const struct timespec *);
|
||||
#define DescribeTimespec(rc, ts) DescribeTimespec(alloca(45), rc, ts)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue