setjump.inc 991 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  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
  6. See the file COPYING.FPC, included in this distribution,
  7. for details about the copyright.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. **********************************************************************}
  12. {**********************************************************************
  13. Set_Jmp/Long_jmp
  14. **********************************************************************}
  15. Function SetJmp (Var S : Jmp_buf) : longint;assembler;[Public, alias : 'FPC_SETJMP'];
  16. asm
  17. end;
  18. Procedure longJmp (Var S : Jmp_buf; value : longint); assembler;[Public, alias : 'FPC_LONGJMP'];
  19. asm
  20. end;
  21. $Log$
  22. Revision 1.3 2002-09-07 16:01:20 peter
  23. * old logs removed and tabs fixed
  24. }