escript  Revision_
types.h
Go to the documentation of this file.
1 
2 /*****************************************************************************
3 *
4 * Copyright (c) 2010-2016 by The University of Queensland
5 * http://www.uq.edu.au
6 *
7 * Primary Business: Queensland, Australia
8 * Licensed under the Apache License, version 2.0
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Development until 2012 by Earth Systems Science Computational Center (ESSCC)
12 * Development 2012-2013 by School of Earth Sciences
13 * Development from 2014 by Centre for Geoscience Computing (GeoComp)
14 *
15 *****************************************************************************/
16 
17 
18 #ifndef __ESYS_TYPES_H__
19 #define __ESYS_TYPES_H__
20 
21 #ifdef ESYS_INDEXTYPE_LONG
22 typedef long index_t;
23 #else
24 typedef int index_t;
25 #endif
26 
27 typedef index_t dim_t;
28 typedef int type_t;
29 typedef int err_t;
30 
31 #endif // __ESYS_TYPES_H__
32 
int err_t
Definition: types.h:29
int type_t
Definition: types.h:28
int index_t
Definition: types.h:24
index_t dim_t
Definition: types.h:27