commit | 3b6b2f7c2d922888e1644355b6cb03bef363b691 | [log] [tgz] |
---|---|---|
author | Treehugger Robot <treehugger-gerrit@google.com> | Wed Nov 30 05:42:53 2016 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Wed Nov 30 05:42:54 2016 +0000 |
tree | 7f554c60f50299889bdcf0e6f53b17adb19636a4 | |
parent | b99b6762b44f50bb3aa6d9ee4bce527ab7c71065 [diff] | |
parent | 79a8f4b2c9b5096c90608018b0d3ba0cb6216ea8 [diff] |
Merge "Fix return type of sync(2)."
diff --git a/libc/include/unistd.h b/libc/include/unistd.h index 1e239cd..cbdb438 100644 --- a/libc/include/unistd.h +++ b/libc/include/unistd.h
@@ -148,7 +148,7 @@ int lchown(const char* __path, uid_t __owner, gid_t __group); char* getcwd(char* __buf, size_t __size); -int sync(void); +void sync(void); int close(int __fd);