zig/test/standalone/compiler_rt_panic/main.c
kcbanner 8b9627f01d test: add a test that verifies no debug handlers get pulled into compiler_rt
build: fix CheckObject checkNotPresent only checking a single line of the haystack
2023-07-27 10:31:52 -04:00

11 lines
185 B
C

#include <stddef.h>
void* __memset(void* dest, char c, size_t n, size_t dest_n);
char foo[128];
int main() {
__memset(&foo[0], 0xff, 128, 128);
return foo[64];
}