change in staticforward -- added statichere
diff --git a/Include/object.h b/Include/object.h
index 98a6b75..9c9b689 100644
--- a/Include/object.h
+++ b/Include/object.h
@@ -376,9 +376,15 @@
 
 #ifdef BAD_STATIC_FORWARD
 #define staticforward extern
+#ifdef __SC__
+#define statichere
 #else
+#define statichere static
+#endif /* __SC__ */
+#else /* !BAD_STATIC_FORWARD */
 #define staticforward static
-#endif /* BAD_STATIC_FORWARD */
+#define statichere static
+#endif /* !BAD_STATIC_FORWARD */
 
 
 /*