Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2875 dpurdie 1
#pragma force_top_level
2
#pragma include_only_once
3
 
4
/* iso646.h: ISO 'C' NA1 library header */
5
/* Copyright (C) Advanced Risc Machines Ltd., 1996              */
6
/* version 1 */
7
 
8
#ifndef __iso646_h
9
#define __iso646_h
10
 
11
#define and    &&
12
#define and_eq &=
13
#define bitand &
14
#define bitor  |
15
#define compl  ~
16
#define not    !
17
#define not_eq !=
18
#define or     ||
19
#define or_eq  |=
20
#define xor    ^
21
#define xor_eq ^=
22
 
23
#endif
24
 
25
/* end of iso646.h */