setjumph.inc 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 = record
  15. {$warning FIXME!!!!}
  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.4 2002-08-10 17:14:36 jonas
  23. * various fixes, mostly changing the names of the modifies registers to
  24. upper case since that seems to be required by the compiler
  25. Revision 1.3 2002/07/26 22:46:17 florian
  26. * interface of system unit for Linux/PowerPC compiles
  27. Revision 1.2 2002/07/26 22:08:38 florian
  28. * comments fixed
  29. Revision 1.1 2002/07/26 22:08:13 florian
  30. + initial dummy implementation
  31. }