10 lines
145 B
C
10 lines
145 B
C
#define _STDLIB_DEBUG
|
|
#include <math.h>
|
|
#include <stdio.h>
|
|
#include <signal.h>
|
|
|
|
int main(int argc, char **argv) {
|
|
raise(SIGKILL);
|
|
return 0;
|
|
}
|
|
|