aboutsummaryrefslogtreecommitdiff
path: root/src/StartUp.c
blob: ced68a6a468760c7f856b3224f720246b30c1bac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <assert.h>

#include <cctk.h>
#include <cctk_Arguments.h>
#include <cctk_Parameters.h>

int HydroBase_StartUp()
{
    CCTK_RegisterBanner("HydroBase: Let it flow.");

    return 0;
}