Jeremy Soller пре 2 година
родитељ
комит
2b3e9a3bd0
1 измењених фајлова са 7 додато и 1 уклоњено
  1. 7 1
      include/bits/stdlib.h

+ 7 - 1
include/bits/stdlib.h

@@ -1,7 +1,13 @@
 #ifndef _BITS_STDLIB_H
 #define _BITS_STDLIB_H
 
-# define abort() __abort(__func__, __FILE__, __LINE__)
+#ifdef __cplusplus
+// C++ needs abort to be a function, define backup function
+void abort(void);
+#else
+// C uses detailed abort macro
+#define abort() __abort(__func__, __FILE__, __LINE__)
+#endif
 
 #ifdef __cplusplus
 extern "C" {