File: l_jmpbuf.h

package info (click to toggle)
acs 021-2.3
  • links: PTS
  • area: main
  • in suites: slink
  • size: 2,196 kB
  • ctags: 2,629
  • sloc: cpp: 15,013; makefile: 166
file content (14 lines) | stat: -rw-r--r-- 253 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*$Id: l_jmpbuf.h,v 11.22 96/02/18 11:46:28 al Exp $ -*- C++ -*-
 * temporary jmp_buf fudge
 * will go away when compiler exception handling is reliable
 */
#ifndef JMPBUF_H
#define JMPBUF_H

#include <setjmp.h>

struct JMP_BUF{
  jmp_buf p;
};

#endif