7 lines
89 B
C
7 lines
89 B
C
#include <signal.h>
|
|
#include <unistd.h>
|
|
|
|
int main(void) {
|
|
kill(getpid(), SIGSEGV);
|
|
}
|