X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=includes%2Fsetjmp.h;fp=includes%2Fsetjmp.h;h=0000000000000000000000000000000000000000;hb=a1f747e81dad0bb9897cb11c652403bb7bbf084c;hp=8afef149e0a373e84b1eac0814491db2549fde2b;hpb=1d9d92ba957a0b8307c9a65c35867fde68e6533b;p=pdclib diff --git a/includes/setjmp.h b/includes/setjmp.h deleted file mode 100644 index 8afef14..0000000 --- a/includes/setjmp.h +++ /dev/null @@ -1,28 +0,0 @@ -/* ---------------------------------------------------------------------------- - * $Id$ - * ---------------------------------------------------------------------------- - * Public Domain C Library - http://pdclib.sourceforge.net - * This code is Public Domain. Use, modify, and redistribute at will. - * ---------------------------------------------------------------------------- - * Nonlocal jumps - * --------------------------------------------------------------------------*/ - -#ifndef _SETJMP_H -#define _SETJMP_H _SETJMP_H - -/* TODO: Documentation */ - -/* ---------------------------------------------------------------------------- - * TYPEDEFS - * --------------------------------------------------------------------------*/ - -struct jmp_buf[1]; /* TODO */ - -/* ---------------------------------------------------------------------------- - * FUNCTIONS - * --------------------------------------------------------------------------*/ - -int setjmp( jmp_buf env ); -void longjmp( jmp_buf env, int val ); - -#endif /* _SETJMP_H */