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