aboutsummaryrefslogtreecommitdiff
path: root/src/cctk_Banner.F90
blob: 53046c86e8d0cfc8e990441cfb1c385c57bf19f9 (plain)
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
26
27
/*@@
  @file    $RCSfile$
  @author  $Author$
  @date    $Date$
  @desc
           Fortran 90 interface declarations for the routines
           which have their C declarations in cctk_Banner.h
  @enddesc
  @version $Header$
@@*/

#include "cctk.h"

module cctk_Banner
  implicit none

  interface
     
     subroutine CCTK_RegisterBanner (ierr, banner)
       implicit none
       integer      ierr
       character(*) banner
     end subroutine CCTK_RegisterBanner

  end interface

end module cctk_Banner