Remove runtime.h include

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@9334 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2001-03-12 02:52:16 +00:00
parent bdf2c027af
commit f495f3a5ca
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2001-03-11 Adam Fedor <fedor@gnu.org>
* Source/NSThread.m: Remove runtime.h include since this isn't
normally installed by objc, add back in extern variables.
2001-03-10 Adam Fedor <fedor@gnu.org>
* Version 0.9.2

View file

@ -40,7 +40,8 @@
/* We need to access these private vars in the objc runtime - because
the objc runtime's API is not enough powerful for the GNUstep
extensions we want to add. */
#include <objc/runtime.h>
extern objc_mutex_t __objc_runtime_mutex;
extern int __objc_runtime_threads_alive;
extern int __objc_is_multi_threaded;
inline static void objc_thread_add ()