mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-25 03:50:29 +00:00
Get Cosmopolitan into releasable state
A new rollup tool now exists for flattening out the headers in a way that works better for our purposes than cpp. A lot of the API clutter has been removed. APIs that aren't a sure thing in terms of general recommendation are now marked internal. There's now a smoke test for the amalgamation archive and gigantic header file. So we can now guarantee you can use this project on the easiest difficulty setting without the gigantic repository. A website is being created, which is currently a work in progress: https://justine.storage.googleapis.com/cosmopolitan/index.html
This commit is contained in:
parent
dba7552c1e
commit
ea0b5d9d1c
775 changed files with 6864 additions and 3963 deletions
|
@ -3,23 +3,18 @@
|
|||
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
||||
COSMOPOLITAN_C_START_
|
||||
|
||||
ssize_t flistxattr(int filedes, char *list, size_t size);
|
||||
ssize_t fgetxattr(int filedes, const char *name, void *value, size_t size);
|
||||
int fsetxattr(int filedes, const char *name, const void *value, size_t size,
|
||||
int flags);
|
||||
int fremovexattr(int filedes, const char *name);
|
||||
|
||||
ssize_t listxattr(const char *path, char *list, size_t size);
|
||||
ssize_t getxattr(const char *path, const char *name, void *value, size_t size);
|
||||
int setxattr(const char *path, const char *name, const void *value, size_t size,
|
||||
int flags);
|
||||
int removexattr(const char *path, const char *name);
|
||||
|
||||
ssize_t llistxattr(const char *path, char *list, size_t size);
|
||||
ssize_t lgetxattr(const char *path, const char *name, void *value, size_t size);
|
||||
int lsetxattr(const char *path, const char *name, const void *value,
|
||||
size_t size, int flags);
|
||||
int lremovexattr(const char *path, const char *name);
|
||||
ssize_t flistxattr(int, char *, size_t);
|
||||
ssize_t fgetxattr(int, const char *, void *, size_t);
|
||||
int fsetxattr(int, const char *, const void *, size_t, int);
|
||||
int fremovexattr(int, const char *);
|
||||
ssize_t listxattr(const char *, char *, size_t);
|
||||
ssize_t getxattr(const char *, const char *, void *, size_t);
|
||||
int setxattr(const char *, const char *, const void *, size_t, int);
|
||||
int removexattr(const char *, const char *);
|
||||
ssize_t llistxattr(const char *, char *, size_t);
|
||||
ssize_t lgetxattr(const char *, const char *, void *, size_t);
|
||||
int lsetxattr(const char *, const char *, const void *, size_t, int);
|
||||
int lremovexattr(const char *, const char *);
|
||||
|
||||
COSMOPOLITAN_C_END_
|
||||
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue