-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsangoma_base.f90
More file actions
25 lines (20 loc) · 866 Bytes
/
sangoma_base.f90
File metadata and controls
25 lines (20 loc) · 866 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
! $Id: sangoma_base.f90 547 2015-02-19 12:32:23Z sp709689 $
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!! Module defining real and integer types for Sangoma routines.
!!! Copyright (C) 2015 Sanita Vetra-Carvalho
!!!
!!! This program is distributed under the Lesser General Public License (LGPL)
!!! version 3, for more details see <https://www.gnu.org/licenses/lgpl.html>.
!!!
!!! Email: s.vetra-carvalho @ reading.ac.uk
!!! Mail: School of Mathematical and Physical Sciences,
!!! University of Reading,
!!! Reading, UK
!!! RG6 6BB
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
module sangoma_base
use, intrinsic :: ISO_C_BINDING
implicit none
integer, parameter :: REALPREC = C_DOUBLE
integer, parameter :: INTPREC = C_INT
end module sangoma_base