/*@@ @file Startup.c @date @author @desc Startup routines for LocalReduce. @enddesc @version $Id$ @@*/ #include "cctk.h" static const char *rcsid="$Id$"; CCTK_FILEVERSION(CactusBase_LocalReduce_Startup_c) /* prototypes of routines defined in this source file */ int LocalReduce_Startup(void); int LocalReduce_Startup (void) { /* Register the reduction operators */ CCTK_RegisterReductionArrayOperator (Local_ReductionAvgArrays, "average"); return (0); }