Initial revision
[AROS-Contrib.git] / development / compilers / freepascal / rtl / m68k / setjump.inc
blob924fb8336a535d69dcea2f549a16488b98bf1ae0
2     $Id$
3     This file is part of the Free Pascal run time library.
4     Copyright (c) 1999-2000 by xxxx
5     member of the Free Pascal development team
7     See the file COPYING.FPC, included in this distribution,
8     for details about the copyright.
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14  **********************************************************************}
16 {**********************************************************************
17            Set_Jmp/Long_jmp
18  **********************************************************************}
20 Function SetJmp (Var S : Jmp_buf) : longint;assembler;[Public, alias : 'FPC_SETJMP'];
22 asm
23 end;
25 Procedure longJmp (Var S : Jmp_buf; value : longint); assembler;[Public, alias : 'FPC_LONGJMP'];
27 asm
28 end;