File: break.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 (9 lines) | stat: -rw-r--r-- 112 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
#include <stdio.h>
#include "debugbreak.h"

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