summaryrefslogtreecommitdiff
path: root/Ganlib/src/CLETIM.f90
diff options
context:
space:
mode:
Diffstat (limited to 'Ganlib/src/CLETIM.f90')
-rw-r--r--Ganlib/src/CLETIM.f9029
1 files changed, 29 insertions, 0 deletions
diff --git a/Ganlib/src/CLETIM.f90 b/Ganlib/src/CLETIM.f90
new file mode 100644
index 0000000..d7b5570
--- /dev/null
+++ b/Ganlib/src/CLETIM.f90
@@ -0,0 +1,29 @@
+!
+!-----------------------------------------------------------------------
+!
+!Purpose:
+! Fortran-2003 bindings for CLETIM.
+!
+!Copyright:
+! Copyright (C) 2009 Ecole Polytechnique de Montreal
+! This library is free software; you can redistribute it and/or
+! modify it under the terms of the GNU Lesser General Public
+! License as published by the Free Software Foundation; either
+! version 2.1 of the License, or (at your option) any later version.
+!
+!Author(s): A. Hebert
+!
+!-----------------------------------------------------------------------
+!
+subroutine CLETIM(sec)
+ ! abort execution
+ use, intrinsic :: iso_c_binding
+ double precision :: sec
+ interface
+ subroutine cletim_c (sec) bind(c)
+ use, intrinsic :: iso_c_binding
+ real(c_double) :: sec
+ end subroutine cletim_c
+ end interface
+ call cletim_c(sec)
+end subroutine CLETIM