summaryrefslogtreecommitdiff
path: root/libstore
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1995-11-13 21:49:08 +0000
committerMiles Bader <miles@gnu.org>1995-11-13 21:49:08 +0000
commit736a7c7c58d4aa31d594579071390e930a982618 (patch)
tree51a0a935a52cd59fb698fa3840c982f348086856 /libstore
parent76d865eff89fbc81134af4aefd0b42618bb038a3 (diff)
Formerly make.c.~2~
Diffstat (limited to 'libstore')
-rw-r--r--libstore/make.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/libstore/make.c b/libstore/make.c
index 29dc79fd..7c8ed717 100644
--- a/libstore/make.c
+++ b/libstore/make.c
@@ -20,8 +20,11 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
+#include <malloc.h>
+
#include "store.h"
+/* Allocate a new store structure of class CLASS, with meths METHS. */
struct store *
_make_store (enum file_storage_class class, struct store_meths *meths)
{
@@ -46,7 +49,7 @@ _make_store (enum file_storage_class class, struct store_meths *meths)
}
void
-_store_free (struct store *store)
+store_free (struct store *store)
{
if (store->port)
mach_port_deallocate (mach_task_self (), store->port);