ESYS13  Revision_
types.h
Go to the documentation of this file.
00001 
00002 /*******************************************************
00003 *
00004 * Copyright (c) 2010-2012 by University of Queensland
00005 * Earth Systems Science Computational Center (ESSCC)
00006 * http://www.uq.edu.au/esscc
00007 *
00008 * Primary Business: Queensland, Australia
00009 * Licensed under the Open Software License version 3.0
00010 * http://www.opensource.org/licenses/osl-3.0.php
00011 *
00012 *******************************************************/
00013 
00014 
00015 #ifndef INC_ESYS_TYPES
00016 #define INC_ESYS_TYPES
00017  
00018 /* on some arcitectures it could be a good idea to use long rather than int */
00019 /* this has not really been tested */
00020 
00021 typedef int dim_t;
00022 typedef int index_t;
00023 typedef int bool_t;
00024 typedef int type_t;
00025 typedef int err_t;
00026 
00027 
00028 #define TRUE 1
00029 #define FALSE 0
00030 
00031 #endif