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 */