aboutsummaryrefslogtreecommitdiffstats
path: root/libc/stdio
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2018-02-10 02:30:37 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2018-02-10 02:30:37 +0000
commit4362da80760ef76af310280e70fddb6b6d3d043f (patch)
tree1c82e79065e631ec1739f588025154696469d253 /libc/stdio
parent6fa9bddbc7188aeb20d6faa4da2e62c12f5a5af2 (diff)
parent90242350053e6fd2c03640d3f9b37864d18c414d (diff)
downloadandroid_bionic-4362da80760ef76af310280e70fddb6b6d3d043f.tar.gz
android_bionic-4362da80760ef76af310280e70fddb6b6d3d043f.tar.bz2
android_bionic-4362da80760ef76af310280e70fddb6b6d3d043f.zip
Merge "Remove __overloadable/__RENAME_CLANG"
Diffstat (limited to 'libc/stdio')
-rw-r--r--libc/stdio/stdio.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/stdio/stdio.cpp b/libc/stdio/stdio.cpp
index d3ac0436e..e066e5b40 100644
--- a/libc/stdio/stdio.cpp
+++ b/libc/stdio/stdio.cpp
@@ -713,7 +713,7 @@ int fgetc_unlocked(FILE* fp) {
* Return first argument, or NULL if no characters were read.
* Do not return NULL if n == 1.
*/
-char* fgets(char* buf, int n, FILE* fp) __overloadable {
+char* fgets(char* buf, int n, FILE* fp) {
CHECK_FP(fp);
ScopedFileLock sfl(fp);
return fgets_unlocked(buf, n, fp);
@@ -1031,7 +1031,7 @@ int fflush_unlocked(FILE* fp) {
return __sflush(fp);
}
-size_t fread(void* buf, size_t size, size_t count, FILE* fp) __overloadable {
+size_t fread(void* buf, size_t size, size_t count, FILE* fp) {
CHECK_FP(fp);
ScopedFileLock sfl(fp);
return fread_unlocked(buf, size, count, fp);