mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
avoid obsolete include
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@29667 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
85760d2563
commit
14a557fcd7
11 changed files with 5 additions and 23 deletions
|
@ -115,20 +115,8 @@ GS_EXPORT void NSDecimalFromComponents(NSDecimal *result,
|
|||
unsigned long long mantissa,
|
||||
short exponent, BOOL negative);
|
||||
|
||||
GS_EXPORT BOOL GSDebugSet(NSString *level);
|
||||
|
||||
GS_EXPORT NSThread *GSCurrentThread(void);
|
||||
GS_EXPORT NSMutableDictionary *GSCurrentThreadDictionary(void);
|
||||
|
||||
GS_EXPORT NSString *GSDebugMethodMsg(id obj, SEL sel, const char *file,
|
||||
int line, NSString *fmt);
|
||||
GS_EXPORT NSString *GSDebugFunctionMsg(const char *func, const char *file,
|
||||
int line, NSString *fmt);
|
||||
|
||||
#endif /* OS_API_VERSION(GS_API_NONE,GS_API_NONE) */
|
||||
|
||||
#include <GNUstepBase/NSTask+GS.h>
|
||||
|
||||
#if defined(__cplusplus)
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -34,7 +34,6 @@
|
|||
|
||||
#import "GNUstepBase/GSObjCRuntime.h"
|
||||
#import "GNUstepBase/GCObject.h"
|
||||
#import "GNUstepBase/GSCategories.h"
|
||||
|
||||
typedef struct {
|
||||
id object;
|
||||
|
|
|
@ -39,7 +39,6 @@
|
|||
#endif
|
||||
|
||||
#import "GNUstepBase/GCObject.h"
|
||||
#import "GNUstepBase/GSCategories.h"
|
||||
|
||||
#include <pthread.h>
|
||||
|
||||
|
|
|
@ -35,7 +35,6 @@
|
|||
#import "Foundation/NSKeyedArchiver.h"
|
||||
|
||||
#import "GNUstepBase/GSObjCRuntime.h"
|
||||
#import "GNUstepBase/GSCategories.h"
|
||||
|
||||
|
||||
/*
|
||||
|
|
|
@ -33,7 +33,6 @@
|
|||
#import "Foundation/NSThread.h"
|
||||
#import "GNUstepBase/GSLock.h"
|
||||
#import "GNUstepBase/GNUstep.h"
|
||||
#import "GNUstepBase/GSCategories.h"
|
||||
|
||||
/**
|
||||
* This implements a class which, when used in single-threaded mode,
|
||||
|
|
|
@ -50,7 +50,6 @@
|
|||
#endif
|
||||
#import "GNUstepBase/GSObjCRuntime.h"
|
||||
#import "GNUstepBase/GNUstep.h"
|
||||
#import "GNUstepBase/GSCategories.h"
|
||||
|
||||
#import "../GSPrivate.h"
|
||||
|
||||
|
|
|
@ -42,7 +42,6 @@
|
|||
|
||||
#import "config.h"
|
||||
#import "GNUstepBase/preface.h"
|
||||
#import "GNUstepBase/GSCategories.h"
|
||||
#import "GNUstepBase/Unicode.h"
|
||||
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
/**
|
||||
* Extension methods for the NSCalendarDate class
|
||||
*/
|
||||
@implementation NSCalendarDate (GSCategories)
|
||||
@implementation NSCalendarDate (GNUstepBase)
|
||||
|
||||
/**
|
||||
* The ISO standard week of the year is based on the first week of the
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
* GNUstep specific (non-standard) additions to the NSError class.
|
||||
* Possibly to be made public
|
||||
*/
|
||||
@implementation NSError(GSCategories)
|
||||
@implementation NSError(GNUstepBase)
|
||||
|
||||
|
||||
#if !defined(__MINGW32__)
|
||||
|
|
|
@ -88,14 +88,14 @@ newLockAt(Class self, SEL _cmd, id *location)
|
|||
}
|
||||
|
||||
|
||||
@implementation NSLock (GSCategories)
|
||||
@implementation NSLock (GNUstepBase)
|
||||
+ (id) newLockAt: (id *)location
|
||||
{
|
||||
return newLockAt(self, _cmd, location);
|
||||
}
|
||||
@end
|
||||
|
||||
@implementation NSRecursiveLock (GSCategories)
|
||||
@implementation NSRecursiveLock (GNUstepBase)
|
||||
+ (id) newLockAt: (id *)location
|
||||
{
|
||||
return newLockAt(self, _cmd, location);
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
#import "Foundation/NSProcessInfo.h"
|
||||
#import "GNUstepBase/NSTask+GNUstepBase.h"
|
||||
|
||||
@implementation NSTask (GSCategories)
|
||||
@implementation NSTask (GNUstepBase)
|
||||
|
||||
static NSString*
|
||||
executablePath(NSFileManager *mgr, NSString *path)
|
||||
|
|
Loading…
Reference in a new issue