/* iso646.h: ISO 'C' NA1 library header */
/* Copyright 1996 ARM Limited. All rights reserved. */

/*
 * Copyright ARM Ltd, 1999. All rights reserved.
 * RCS $Revision: 102466 $
 * Checkin $Date: 2006-08-23 11:37:17 +0100 (Wed, 23 Aug 2006) $
 * Revising $Author: drodgman $
 */


#ifndef __iso646_h
#define __iso646_h

#define and    &&
#define and_eq &=
#define bitand &
#define bitor  |
#define compl  ~
#define not    !
#define not_eq !=
#define or     ||
#define or_eq  |=
#define xor    ^
#define xor_eq ^=

#endif

/* end of iso646.h */
