summaryrefslogtreecommitdiff
path: root/src/main/Subsystems.c
blob: 1e27f6b5d6ef329ee3ca1b7a45a627d5b0ef149a (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
28
29
30
31
32
33
34
35
36
37
38
 /*@@
   @file      Subsystems.c
   @date      Fri Jul 23 14:38:25 1999
   @author    Tom Goodale
   @desc 
   Misc stuff for the subsystems.
   @enddesc 
 @@*/




 /*@@
   @routine    InitialiseSubsystemDefaults
   @date       Fri Jul 23 14:39:53 1999
   @author     Tom Goodale
   @desc 
   Sets up the defaults for the overloadable functions in the subsystems.
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 

@@*/
int InitialiseSubsystemDefaults(void)
{
  SetupMainFunctions();
  SetupCommFunctions();
  SetupIOFunctions();

  CCTKi_BindingsImplementationsInitialise();
  CCTKi_BindingsParametersInitialise();

  return 0;
}