Add global Foundation header file.

Fix some missed memory allocation function usage.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@2682 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Scott Christley 1998-01-03 21:27:44 +00:00
parent 104b517b3d
commit 2c49c63e47
15 changed files with 134 additions and 24 deletions

View file

@ -343,7 +343,7 @@ pop_pool_from_cache (struct autorelease_thread_vars *tv)
for (a = _released_head; a; )
{
void *n = a->next;
(*objc_free) (a);
objc_free (a);
a = n;
}
[super dealloc];