File: trap.c

package info (click to toggle)
debugbreak 1.0-1
  • links: PTS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 132 kB
  • sloc: python: 125; ansic: 123; cpp: 8; makefile: 2
file content (8 lines) | stat: -rw-r--r-- 91 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
#include <stdio.h>

int main()
{
	__builtin_trap();
	printf("hello world\n");
	return 0;
}