mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 17:57:35 +00:00
Everywhere: Run clang-format
This commit is contained in:
parent
0376c127f6
commit
086969277e
1665 changed files with 8479 additions and 8479 deletions
|
@ -14,14 +14,14 @@
|
|||
__BEGIN_DECLS
|
||||
|
||||
mode_t umask(mode_t);
|
||||
int chmod(const char* pathname, mode_t);
|
||||
int chmod(char const* pathname, mode_t);
|
||||
int fchmodat(int fd, char const* path, mode_t mode, int flag);
|
||||
int fchmod(int fd, mode_t);
|
||||
int mkdir(const char* pathname, mode_t);
|
||||
int mkfifo(const char* pathname, mode_t);
|
||||
int mkdir(char const* pathname, mode_t);
|
||||
int mkfifo(char const* pathname, mode_t);
|
||||
int fstat(int fd, struct stat* statbuf);
|
||||
int lstat(const char* path, struct stat* statbuf);
|
||||
int stat(const char* path, struct stat* statbuf);
|
||||
int fstatat(int fd, const char* path, struct stat* statbuf, int flags);
|
||||
int lstat(char const* path, struct stat* statbuf);
|
||||
int stat(char const* path, struct stat* statbuf);
|
||||
int fstatat(int fd, char const* path, struct stat* statbuf, int flags);
|
||||
|
||||
__END_DECLS
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue