[ create a new paste ] login | about

Link: http://codepad.org/53mN8Hin    [ raw code | output | fork ]

C, pasted on Jun 17:
1
2
3
4
5
6
7
#include <stdio.h>
#include <signal.h>

int main() {
  printf ("hello\n");
  raise(SIGKILL);
}


Output:
1
Disallowed system call: SYS_kill


Create a new paste based on this one


Comments: