1#define FUNCTION(x) .global x; .type x,@function; x
2
3FUNCTION(main):
4	mov		$jmpBuffer, %eax
5	push	%eax
6	call	setjmp
7	add		$4, %esp
8
9	mov		$0, %eax
10	ret
11
12.comm	jmpBuffer, 1024, 32
13