summaryrefslogtreecommitdiffstats
path: root/src/H5MMprivate.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>1998-01-16 22:23:43 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>1998-01-16 22:23:43 (GMT)
commitc2c94c31878dc42926661c9cb7e71be620196fc1 (patch)
treeee9ce2ae309882348dc1eafc1d105b5e6646605e /src/H5MMprivate.h
parent903e677366a86ea385d5cfe1241f3f53132941de (diff)
downloadhdf5-c2c94c31878dc42926661c9cb7e71be620196fc1.zip
hdf5-c2c94c31878dc42926661c9cb7e71be620196fc1.tar.gz
hdf5-c2c94c31878dc42926661c9cb7e71be620196fc1.tar.bz2
[svn-r157] Reformatted code with indent...
Diffstat (limited to 'src/H5MMprivate.h')
-rw-r--r--src/H5MMprivate.h23
1 files changed, 11 insertions, 12 deletions
diff --git a/src/H5MMprivate.h b/src/H5MMprivate.h
index 7e95d70..5312df8 100644
--- a/src/H5MMprivate.h
+++ b/src/H5MMprivate.h
@@ -1,16 +1,16 @@
/*-------------------------------------------------------------------------
- * Copyright (C) 1997 National Center for Supercomputing Applications.
+ * Copyright (C) 1997 National Center for Supercomputing Applications.
* All rights reserved.
*
*-------------------------------------------------------------------------
*
- * Created: H5MMprivate.h
- * Jul 10 1997
- * Robb Matzke <matzke@llnl.gov>
+ * Created: H5MMprivate.h
+ * Jul 10 1997
+ * Robb Matzke <matzke@llnl.gov>
*
- * Purpose: Private header for memory management.
+ * Purpose: Private header for memory management.
*
- * Modifications:
+ * Modifications:
*
*-------------------------------------------------------------------------
*/
@@ -24,11 +24,10 @@
/*
* Library prototypes...
*/
-void *H5MM_xmalloc (size_t size);
-void *H5MM_xcalloc (size_t n, size_t size);
-void *H5MM_xrealloc (void *mem, size_t size);
-char *H5MM_xstrdup (const char *s);
-void *H5MM_xfree (const void *mem);
-
+void *H5MM_xmalloc(size_t size);
+void *H5MM_xcalloc(size_t n, size_t size);
+void *H5MM_xrealloc(void *mem, size_t size);
+char *H5MM_xstrdup(const char *s);
+void *H5MM_xfree(const void *mem);
#endif