diff options
author | Miles Bader <miles@gnu.org> | 1995-11-13 21:49:08 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1995-11-13 21:49:08 +0000 |
commit | 736a7c7c58d4aa31d594579071390e930a982618 (patch) | |
tree | 51a0a935a52cd59fb698fa3840c982f348086856 /libstore | |
parent | 76d865eff89fbc81134af4aefd0b42618bb038a3 (diff) |
Formerly make.c.~2~
Diffstat (limited to 'libstore')
-rw-r--r-- | libstore/make.c | 5 |
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); |