1 #ifndef __VMML__BLAS_TYPES__HPP__
2 #define __VMML__BLAS_TYPES__HPP__
3 
4 
5 namespace vmml
6 {
7 
8 	namespace blas
9 	{
10 
11 #ifdef __APPLE__
12 
13 		typedef int  blas_int;
14 
15 #else
16 
17 		typedef int  blas_int;
18 
19 #endif
20 
21 
22 	} // namespace blas
23 
24 
25 } // namespace vmml
26 
27 #endif
28 
29