+#else /* not HFS - temp workaround until 4277828 is fixed */
+/* stubs for exported routines that aren't present when we build kernel without HFS */
+
+#include <sys/types.h>
+
+int32_t FastUnicodeCompare( void * str1, u_int32_t length1, void * str2, u_int32_t length2 );
+
+
+int32_t FastUnicodeCompare( __unused void * str1,
+ __unused u_int32_t length1,
+ __unused void * str2,
+ __unused u_int32_t length2 )
+{
+ return( 0 );
+}
+
+
+#endif /* HFS */
+