summaryrefslogtreecommitdiff
path: root/lib/asan/asan_interceptors.h
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2012-06-25 06:53:10 +0000
committerChandler Carruth <chandlerc@gmail.com>2012-06-25 06:53:10 +0000
commit6bae39d1db13f60d3e9b8393e5b9d9eb2ab1b5c0 (patch)
tree2bf24e8867dd6a04a58aac0d7d2ea11aff28b1bf /lib/asan/asan_interceptors.h
parent025ea90c9e15a18d29b6aab70f8192ae9c1beea4 (diff)
downloadcompiler-rt-6bae39d1db13f60d3e9b8393e5b9d9eb2ab1b5c0.tar.gz
compiler-rt-6bae39d1db13f60d3e9b8393e5b9d9eb2ab1b5c0.tar.bz2
compiler-rt-6bae39d1db13f60d3e9b8393e5b9d9eb2ab1b5c0.tar.xz
Lots of trivial changes to remove extraneous semicolons throughout ASan.
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@159128 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/asan/asan_interceptors.h')
-rw-r--r--lib/asan/asan_interceptors.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/asan/asan_interceptors.h b/lib/asan/asan_interceptors.h
index 8ebc4175..32816920 100644
--- a/lib/asan/asan_interceptors.h
+++ b/lib/asan/asan_interceptors.h
@@ -17,16 +17,16 @@
#include "asan_internal.h"
#include "interception/interception.h"
-DECLARE_REAL(int, memcmp, const void *a1, const void *a2, uptr size);
-DECLARE_REAL(void*, memcpy, void *to, const void *from, uptr size);
-DECLARE_REAL(void*, memset, void *block, int c, uptr size);
-DECLARE_REAL(char*, strchr, const char *str, int c);
-DECLARE_REAL(uptr, strlen, const char *s);
-DECLARE_REAL(char*, strncpy, char *to, const char *from, uptr size);
-DECLARE_REAL(uptr, strnlen, const char *s, uptr maxlen);
+DECLARE_REAL(int, memcmp, const void *a1, const void *a2, uptr size)
+DECLARE_REAL(void*, memcpy, void *to, const void *from, uptr size)
+DECLARE_REAL(void*, memset, void *block, int c, uptr size)
+DECLARE_REAL(char*, strchr, const char *str, int c)
+DECLARE_REAL(uptr, strlen, const char *s)
+DECLARE_REAL(char*, strncpy, char *to, const char *from, uptr size)
+DECLARE_REAL(uptr, strnlen, const char *s, uptr maxlen)
struct sigaction;
DECLARE_REAL(int, sigaction, int signum, const struct sigaction *act,
- struct sigaction *oldact);
+ struct sigaction *oldact)
namespace __asan {