1	.text
2	.globl	_start
3	.type	_start,@function
4_start:
5	call	foo@plt
6	call	sexternal@plt
7	jmp	sglobal@plt
8	.size	_start, .-_start
9
10	.globl	sexternal
11	.type	sexternal,@function
12sexternal:
13	ret
14	.size	sexternal, .-sexternal
15