Remove __attribute__((weak)) on function prototype.  It has a different meaning on prototypes then it does on definitions.  It is not needed on the prototype and causes build failures for static codegen

git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@149720 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/int_util.h b/lib/int_util.h
index 17d7722..1348b85 100644
--- a/lib/int_util.h
+++ b/lib/int_util.h
@@ -22,11 +22,8 @@
 /** \brief Trigger a program abort (or panic for kernel code). */
 #define compilerrt_abort() compilerrt_abort_impl(__FILE__, __LINE__, \
                                                  __FUNCTION__)
+
 void compilerrt_abort_impl(const char *file, int line,
-                           const char *function)
-#ifndef KERNEL_USE
-  __attribute__((weak))
-#endif
-  __attribute__((noreturn)) __attribute__((visibility("hidden")));
+                           const char *function) __attribute__((noreturn));
 
 #endif /* INT_UTIL_H */