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:
mccallum 1996-03-22 02:35:21 +00:00
parent 34987d18d2
commit 3a591a0d47

View file

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