summaryrefslogtreecommitdiff
path: root/src/include/cctk_MemAlloc.h
diff options
context:
space:
mode:
authorlanfer <lanfer@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-03-07 09:37:39 +0000
committerlanfer <lanfer@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-03-07 09:37:39 +0000
commit07d16be2f23e3db6495ff76631b5f50f731b69c7 (patch)
treea0a11dcc70a558820b8bd044418ae08acefa09b1 /src/include/cctk_MemAlloc.h
parent10f8937419a53c7c67f8f0829722340d20d6d068 (diff)
prototypes for MemAlloc
git-svn-id: http://svn.cactuscode.org/flesh/trunk@1427 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/include/cctk_MemAlloc.h')
-rw-r--r--src/include/cctk_MemAlloc.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/include/cctk_MemAlloc.h b/src/include/cctk_MemAlloc.h
new file mode 100644
index 00000000..5ff9c6eb
--- /dev/null
+++ b/src/include/cctk_MemAlloc.h
@@ -0,0 +1,28 @@
+ /*@@
+ @header cctk_MemAlloc.h
+ @date Thu Jan 20 2000
+ @author Gerd Lanfermann
+ @desc
+ Prototypes for Cactus MemAlloc functions.
+ @enddesc
+ @version $Header$
+ @@*/
+
+#ifndef _CCTK_STAGGER_H_
+#define _CCTK_STAGGER_H_
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+void *CCTKi_malloc(t_size size, int line, const char *file);
+void CCTKi_free(void *pointer);
+void CCTK_TotalMemory(void);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
+
+