diff options
author | The Android Open Source Project <initial-contribution@android.com> | 2009-02-10 15:43:56 -0800 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2009-02-10 15:43:56 -0800 |
commit | 9f65adf2ba3bb15feb8b7a7b3eef788df3fd270e (patch) | |
tree | c06064fc9022ef63a40f83a91292103784f49780 /libc/include/sys/stat.h | |
parent | d37527501c85edcb3a6a7c8a0b6297d52d434897 (diff) | |
download | bionic-9f65adf2ba3bb15feb8b7a7b3eef788df3fd270e.zip bionic-9f65adf2ba3bb15feb8b7a7b3eef788df3fd270e.tar.gz bionic-9f65adf2ba3bb15feb8b7a7b3eef788df3fd270e.tar.bz2 |
auto import from //branches/cupcake/...@130745
Diffstat (limited to 'libc/include/sys/stat.h')
-rw-r--r-- | libc/include/sys/stat.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libc/include/sys/stat.h b/libc/include/sys/stat.h index 5e6363f..23ab5ae 100644 --- a/libc/include/sys/stat.h +++ b/libc/include/sys/stat.h @@ -71,6 +71,10 @@ struct stat { unsigned long long st_ino; }; +extern int chmod(const char *, mode_t); +extern int fchmod(int, mode_t); +extern int mkdir(const char *, mode_t); + extern int stat(const char *, struct stat *); extern int fstat(int, struct stat *); extern int lstat(const char *, struct stat *); |