home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / unix / armlinux / alpha / PARTITIONS / USR_GZ / usr / include / jmp_buf.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-05-14  |  284 b   |  15 lines

  1. #ifndef _JMP_BUF_H
  2. #define _JMP_BUF_H
  3.  
  4. #if defined(__i386__)
  5. # include <i386/jmp_buf.h>
  6. #elif defined(__mc68000__)
  7. # include <m68k/jmp_buf.h>
  8. #elif defined(__arm__)
  9. # include <arm/jmp_buf.h>
  10. #else
  11. # error architecture not supported by Linux C library
  12. #endif 
  13.  
  14. #endif /* _JMP_BUF_H */
  15.