X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=includes%2Fsetjmp.h;fp=includes%2Fsetjmp.h;h=0000000000000000000000000000000000000000;hb=94cec7268060142c361c882c0a54d4b0052a591c;hp=8afef149e0a373e84b1eac0814491db2549fde2b;hpb=c8f799d852e3698468a78954d82588e841cc0b70;p=pdclib.old 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 */