Declare new functions.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1255 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1996-03-22 02:35:21 +00:00
parent af9619a45c
commit fa6a06c91f

View file

@ -1,5 +1,5 @@
/* NSZone memory management.
Copyright (C) 1995 Free Software Foundation, Inc.
Copyright (C) 1995, 1996 Free Software Foundation, Inc.
Written by: Mark Lakata <lakata@sseos.lbl.gov>
Date: January 1995
@ -33,6 +33,8 @@
#include <stdlib.h>
#include <objects/config.h>
@class NSString;
/*
* This the NeXTStep zone typedef. It is nothing like the implementation
* below.
@ -152,10 +154,13 @@ extern int NSMallocCheck(void);
/*
* Give a zone a name.
*
* The string will be copied.
* [This function is deprecated. Use functions below instead.]
*/
extern void NSNameZone(NSZone *z, const char *name);
extern void NSSetZoneName (NSZone *z, NSString *name);
extern NSString *NSZoneName (NSZone *z);
#endif /* __NeXT__ */
#endif /* h_zone_NS_h */