summaryrefslogtreecommitdiff
path: root/lib/sanitizer_common/sanitizer_libc.h
diff options
context:
space:
mode:
authorKostya Serebryany <kcc@google.com>2012-06-29 13:05:36 +0000
committerKostya Serebryany <kcc@google.com>2012-06-29 13:05:36 +0000
commita4e4744778e6b3067f5cf223cf28bb586c1ecf67 (patch)
tree57b28acc8af299a84252d360c14b2090aadf5f8e /lib/sanitizer_common/sanitizer_libc.h
parentdbd8aacc28bf631eb73f48611758b51e08e59f9a (diff)
downloadcompiler-rt-a4e4744778e6b3067f5cf223cf28bb586c1ecf67.tar.gz
[asan] get rid of libc's sscanf as it causes infinite recursion on Fedora.
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@159424 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/sanitizer_common/sanitizer_libc.h')
-rw-r--r--lib/sanitizer_common/sanitizer_libc.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/sanitizer_common/sanitizer_libc.h b/lib/sanitizer_common/sanitizer_libc.h
index a388005ee..8da4286ce 100644
--- a/lib/sanitizer_common/sanitizer_libc.h
+++ b/lib/sanitizer_common/sanitizer_libc.h
@@ -60,7 +60,6 @@ uptr internal_write(fd_t fd, const void *buf, uptr count);
uptr internal_filesize(fd_t fd); // -1 on error.
int internal_dup2(int oldfd, int newfd);
int internal_snprintf(char *buffer, uptr length, const char *format, ...);
-int internal_sscanf(const char *str, const char *format, ...);
// Threading
int internal_sched_yield();