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