From 3a591a0d477888f2a2403cc1b30d88aa6c08b344 Mon Sep 17 00:00:00 2001 From: mccallum Date: Fri, 22 Mar 1996 02:35:21 +0000 Subject: [PATCH] Declare new functions. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1255 72102866-910b-0410-8b05-ffd578937521 --- Headers/gnustep/base/NSZone.h | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Headers/gnustep/base/NSZone.h b/Headers/gnustep/base/NSZone.h index 1444eb320..11d47098f 100644 --- a/Headers/gnustep/base/NSZone.h +++ b/Headers/gnustep/base/NSZone.h @@ -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 Date: January 1995 @@ -33,6 +33,8 @@ #include #include +@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 */