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.
31 lines
674 B
31 lines
674 B
/* |
|
** Copyright (c) 2011 MediaTek Inc. All Rights Reserved. |
|
** -------------------- |
|
** This software is protected by copyright and the information contained |
|
** herein is confidential. The software may not be copied and the information |
|
** contained herein may no be used or disclosed except with the written |
|
** permission of MediaTek Inc. |
|
** |
|
** float.h |
|
*/ |
|
|
|
#ifndef _ISO646_H |
|
#define _ISO646_H |
|
|
|
#if defined(__MD32__) |
|
#include <md32_bril.h> |
|
#endif |
|
|
|
#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 /* iso646.h */
|
|
|