home *** CD-ROM | disk | FTP | other *** search
- /*
- * Copyright (c) 1998 The Santa Cruz Operation, Inc.. All Rights Reserved.
- *
- * THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF THE
- * SANTA CRUZ OPERATION INC.
- *
- * The copyright notice above does not evidence any actual or intended
- * publication of such source code.
- */
-
- #ifndef _FATAL_H
- #define _FATAL_H
-
- #ident "@(#)sgs-head:common/head/fatal.h 1.4.4.2"
-
- #include <setjmp.h>
- extern int Fflags;
- extern char *Ffile;
- extern int Fvalue;
- extern int (*Ffunc)();
- extern jmp_buf Fjmp;
-
- # define FTLMSG 0100000
- # define FTLCLN 040000
- # define FTLFUNC 020000
- # define FTLACT 077
- # define FTLJMP 02
- # define FTLEXIT 01
- # define FTLRET 0
-
- # define FSAVE(val) SAVE(Fflags,old_Fflags); Fflags = val;
- # define FRSTR() RSTR(Fflags,old_Fflags);
-
- #endif /* _FATAL_H */
-