Warning, /include/kerngen/q_andor.inc is written in an unsupported language. File is not indexed.
0001 *
0002 * $Id$
0003 *
0004 * $Log$
0005 * Revision 1.2 1997/02/04 17:35:38 mclareni
0006 * Merge Winnt and 97a versions
0007 *
0008 * Revision 1.1.1.1.2.1 1997/01/21 11:30:28 mclareni
0009 * All mods for Winnt 96a on winnt branch
0010 *
0011 * Revision 1.1.1.1 1996/02/15 17:49:19 mclareni
0012 * Kernlib
0013 *
0014 *
0015 * IAND / IOR / IEOR / NOT standard?
0016 *
0017 * q_andor.inc
0018 *
0019 #if defined(CERNLIB_QMSUN)||defined(CERNLIB_QMLNX)
0020 IAND (IZV,IZW) = AND (IZV, IZW)
0021 IOR (IZV,IZW) = OR (IZV, IZW)
0022 IEOR (IZV,IZW) = XOR (IZV, IZW)
0023 #elif defined(CERNLIB_QMDOS)&&defined(CERNLIB_QF2C)
0024 IAND(IZV,IZW) = AND(IZV,IZW)
0025 IOR(IZV,IZW) = OR(IZV,IZW)
0026 IEOR(IZV,IZW) = XOR(IZV,IZW)
0027 #else
0028 #endif