summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.printf/char1.stp
blob: 207d1bc5252e43a1667a2d5532e2fafb2b954a90 (plain)
1
2
3
4
5
6
7
8
probe begin
{
	printf("%c", 115)
	printf("%c", 116)
	printf("%c%c", 97, 112)
	print("\n")
	exit()
}