You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
606 B

/* iso646.h: ISO 'C' NA1 library header */
/* Copyright 1996 ARM Limited. All rights reserved. */
/*
* Copyright ARM Ltd, 1999. All rights reserved.
* RCS $Revision: 182176 $
* Checkin $Date: 2013-10-07 19:06:18 +0100 (Mon, 07 Oct 2013) $
* Revising $Author: drodgman $
*/
#ifndef __iso646_h
#define __iso646_h
#define __ARMCLIB_VERSION 5050106
#ifndef __cplusplus
#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
#endif
/* end of iso646.h */