aboutsummaryrefslogtreecommitdiff
path: root/unix/as.cygwin/zz.c
blob: 68aa838bb9b6db91c06bbaa4b8c6aa64b526b608 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
/* Compile with gcc -S to get demo assembler code.
 */
zsvjmp_(buf,status)
int *buf;
int *status;
{
	*status = 0;
	buf[0] = *status;
	setjmp (&buf[1]);
}