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 _ISO646_H
- #define _ISO646_H
- #ident "@(#)sgs-head:common/head/iso646.h 1.2"
-
- #define and &&
- #define and_eq &=
- #define bitand &
-
- #define or ||
- #define or_eq |=
- #define bitor |
-
- #define xor ^
- #define xor_eq ^=
-
- #define compl ~
-
- #define not !
- #define not_eq !=
-
- #endif /*_ISO646_H*/
-