aboutsummaryrefslogtreecommitdiff
path: root/CarpetExtra/WaveToyF77/src/Startup.F77
blob: b4f6a038fd356bda72db10d730e66918b50eae5f (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
c	-*-Fortran-*-

 /*@@
   @file      Startup.F77
   @date      
   @author    Gabrielle Allen
   @desc 
              Register banner 
   @enddesc 
   @version $Header: /home/eschnett/C/carpet/Carpet/CarpetExtra/WaveToyF77/src/Startup.F77,v 1.1 2001/03/01 13:40:11 eschnett Exp $
 @@*/

#include "cctk.h"

      integer function WaveToyF77_Startup()

      implicit none
   
      integer ierr
      call CCTK_RegisterBanner(ierr, "WaveToyF77: Evolutions of a Scalar Field")

      WaveToyF77_Startup = 0

      end