About
Contact
QtCreator
KDevelop
Solarized
1
// RUN: %clang_hwasan %s -o %t && %run %t
2
3
#include
<string.h>
4
5
int
main
() {
6
char
a
[
1
];
7
memset
(
s:
a
,
c:
0
,
n:
0
);
8
memmove
(
dest:
a
,
src:
a
,
n:
0
);
9
memcpy
(
dest:
a
,
src:
a
,
n:
0
);
10
}
11