aboutsummaryrefslogtreecommitdiff
path: root/src/NoneBoundary.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/NoneBoundary.c')
-rw-r--r--src/NoneBoundary.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/NoneBoundary.c b/src/NoneBoundary.c
index 59d1267..ab2f294 100644
--- a/src/NoneBoundary.c
+++ b/src/NoneBoundary.c
@@ -64,6 +64,11 @@ CCTK_FILEVERSION(CactusBase_Boundary_NoneBoundary_c);
@vtype int
@vio in
@endvar
+ @var widths
+ @vdesc array of boundary widths for each variable
+ @vtype int
+ @vio in
+ @endvar
@var table_handles
@vdesc array of table handles which hold extra arguments
@vtype int
@@ -75,7 +80,7 @@ CCTK_FILEVERSION(CactusBase_Boundary_NoneBoundary_c);
@endreturndesc
@@*/
-int BndNone(const cGH *GH, int num_vars, int *var_indices, int *faces,
+int BndNone(const cGH *GH, int num_vars, int *var_indices, int *faces, int *widths,
int *table_handles)
{
#ifdef DEBUG
@@ -87,6 +92,7 @@ int BndNone(const cGH *GH, int num_vars, int *var_indices, int *faces,
num_vars = num_vars;
var_indices = var_indices;
faces = faces;
+ widths = widths;
table_handles = table_handles;
return 0;