Skip to content

Instantly share code, notes, and snippets.

/-

Created October 24, 2013 16:32
Show Gist options
  • Save anonymous/7140465 to your computer and use it in GitHub Desktop.
Save anonymous/7140465 to your computer and use it in GitHub Desktop.
#include <setjmp.h>
#include <stdio.h>
int
main(int argc, char *argv[])
{
jmp_buf jump;
int status = setjmp(jump);
puts("yes");
longjmp(jump, status);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment