summaryrefslogtreecommitdiff
path: root/src/IO/CactusDefaultIO.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/IO/CactusDefaultIO.c')
-rw-r--r--src/IO/CactusDefaultIO.c39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/IO/CactusDefaultIO.c b/src/IO/CactusDefaultIO.c
deleted file mode 100644
index aa9b85cd..00000000
--- a/src/IO/CactusDefaultIO.c
+++ /dev/null
@@ -1,39 +0,0 @@
- /*@@
- @file CactusDefaultIO.c
- @date Tue Sep 29 12:45:04 1998
- @author Tom Goodale
- @desc
- Default cactus IO routine.
- @enddesc
- @@*/
-
-
-#include <stdio.h>
-#include <stdlib.h>
-
-#include "flesh.h"
-#include "CactusIODefaults.h"
-
-static char *rcsid = "$Id$";
-
-
-int CactusDefaultOutput1D(cGH *GH, cGF *GF)
-{
- printf("I'm in the default 1d output routine\n");
-
- return 0;
-}
-
-int CactusDefaultOutput2D(cGH *GH, cGF *GF)
-{
- printf("I'm in the default 2d output routine\n");
-
- return 0;
-}
-
-int CactusDefaultOutput3D(cGH *GH, cGF *GF)
-{
- printf("I'm in the default 3d output routine\n");
-
- return 0;
-}