Skip to content

Instantly share code, notes, and snippets.

@dlisboa
Forked from anonymous/-
Created October 24, 2013 16:34
Show Gist options
  • Save dlisboa/7140513 to your computer and use it in GitHub Desktop.
Save dlisboa/7140513 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