Fix missing file

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/branches/stable@26735 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2008-06-30 06:59:08 +00:00
parent 2a3c185ac8
commit cb0b60725b

View file

@ -498,5 +498,19 @@ long
GSPrivateUnloadModule(FILE *errorStream,
void (*unloadCallback)(Class, struct objc_category *)) GS_ATTRIB_PRIVATE;
/* Memory to use to put executabel code in.
*/
@interface GSCodeBuffer : NSObject
{
unsigned size;
void *buffer;
}
+ (GSCodeBuffer*) memoryWithSize: (unsigned)_size;
- (void*) buffer;
- (id) initWithSize: (unsigned)_size;
- (void) protect;
@end
#endif /* _GSPrivate_h_ */