OSDN Git Service

Rename thread-* to thr-*.
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 4 Apr 1996 17:26:03 +0000 (17:26 +0000)
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 4 Apr 1996 17:26:03 +0000 (17:26 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@11664 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/objc/thr.c

index 1b51140..2b421d8 100644 (file)
@@ -118,15 +118,15 @@ objc_mutex_lock_x(_objc_mutex_t mutex, const char *f, int l)
  */
 
 #if defined(__sparc__) && defined(__svr4__)     /* Solaris only code.       */
-#include "thread-solaris.c"
+#include "thr-solaris.c"
 #elif defined(__sgi__) && defined(__mips__)     /* IRIX only code.          */
-#include "thread-irix.c"
+#include "thr-irix.c"
 #elif defined(__alpha__) && defined(__osf__)    /* Alpha OSF/1 only code.   */
-#include "thread-decosf1.c"
+#include "thr-decosf1.c"
 #elif defined(__WIN32__)
-#include "thread-win32.c"
+#include "thr-win32.c"
 #else                                          /* Single threaded code.    */
-#include "thread-single.c"
+#include "thr-single.c"
 #endif
 
 /* End of File */