#include <stdio.h>
#include "feeDebug.h"
-#ifdef NeXT
-
-/*
- * OpenStep....
- */
-void CKRaise(const char *reason) {
- #if FEE_DEBUG
- printf("CryptKit fatal error: %s\n", reason);
- #endif
- abort();
-}
-
-#elif WIN32
-
-/*
- * OpenStep on Windows.
- */
-
-void CKRaise(const char *reason) {
- #if FEE_DEBUG
- printf("CryptKit fatal error: %s\n", reason);
- #endif
- abort();
-}
-
-#elif __MAC_BUILD__
+#import "feeDebug.h"
+#if __MAC_BUILD__
/*
* Macintosh, all flavors.
*/
abort();
}
-#elif unix
-
-/* try for generic UNIX */
-
-void CKRaise(const char *reason) {
- #if FEE_DEBUG
- printf("CryptKit fatal error: %s\n", reason);
- #endif
- abort();
-}
-
#else
#error platform-specific work needed in security_cryptkit/platform.c