brintos

brintos / llvm-project-archived public Read only

0
0
Text · 151 B · 7aa957e Raw
13 lines · cpp
1#include <cstdint>2#include <csignal>3 4uint8_t g_8w;5uint16_t g_16rw;6uint32_t g_32w;7uint32_t g_32rw;8 9int main() {10  ::raise(SIGSTOP);11  return 0;12}13