mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
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:
parent
af9619a45c
commit
fa6a06c91f
1 changed files with 7 additions and 2 deletions
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue