setjumph.inc 878 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. $Id$
  3. This file is part of the Free Pascal run time library.
  4. Copyright (c) 2000-2002 by Jonas Maebe and other members of the
  5. Free Pascal development team
  6. SetJmp/Longjmp declarations
  7. See the file COPYING.FPC, included in this distribution,
  8. for details about the copyright.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  12. **********************************************************************}
  13. type
  14. jmp_buf = packed record
  15. {$warning FIX ME!!}
  16. end;
  17. pjmp_buf = ^jmp_buf;
  18. function setjmp(var S : jmp_buf) : longint;
  19. procedure longjmp(var S : jmp_buf;value : longint);
  20. {
  21. $Log$
  22. Revision 1.1 2003-04-30 22:11:06 florian
  23. + for a lot of x86-64 dependend files mostly dummies added
  24. }