17a84e134Smrg/* 27a84e134Smrg 37a84e134SmrgCopyright 1985, 1986, 1987, 1998 The Open Group 47a84e134Smrg 57a84e134SmrgPermission to use, copy, modify, distribute, and sell this software and its 67a84e134Smrgdocumentation for any purpose is hereby granted without fee, provided that 77a84e134Smrgthe above copyright notice appear in all copies and that both that 87a84e134Smrgcopyright notice and this permission notice appear in supporting 97a84e134Smrgdocumentation. 107a84e134Smrg 117a84e134SmrgThe above copyright notice and this permission notice shall be included in 127a84e134Smrgall copies or substantial portions of the Software. 137a84e134Smrg 147a84e134SmrgTHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 157a84e134SmrgIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 167a84e134SmrgFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 177a84e134SmrgOPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN 187a84e134SmrgAN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 197a84e134SmrgCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 207a84e134Smrg 217a84e134SmrgExcept as contained in this notice, the name of The Open Group shall not be 227a84e134Smrgused in advertising or otherwise to promote the sale, use or other dealings 237a84e134Smrgin this Software without prior written authorization from The Open Group. 247a84e134Smrg 257a84e134Smrg*/ 267a84e134Smrg 277a84e134Smrg#ifndef _Cardinals_h 287a84e134Smrg#define _Cardinals_h 297a84e134Smrg 307a84e134Smrg#define ZERO ((Cardinal)0) 317a84e134Smrg#define ONE ((Cardinal)1) 327a84e134Smrg#define TWO ((Cardinal)2) 337a84e134Smrg#define THREE ((Cardinal)3) 347a84e134Smrg#define FOUR ((Cardinal)4) 357a84e134Smrg#define FIVE ((Cardinal)5) 367a84e134Smrg#define SIX ((Cardinal)6) 377a84e134Smrg#define SEVEN ((Cardinal)7) 387a84e134Smrg#define EIGHT ((Cardinal)8) 397a84e134Smrg#define NINE ((Cardinal)9) 407a84e134Smrg#define TEN ((Cardinal)10) 417a84e134Smrg 427a84e134Smrg#endif /* _Cardinals_h */ 43