aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/libbb.h2
-rw-r--r--include/platform.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/include/libbb.h b/include/libbb.h
index cede50cc2..858084bc5 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -1960,7 +1960,7 @@ void bbunit_settestfailed(void);
.name = #NAME, \
.testfunc = bbunit_##NAME##_test, \
}; \
- static void INIT_LAST bbunit_##NAME##_register(void) \
+ static void INIT_FUNC bbunit_##NAME##_register(void) \
{ \
bbunit_registertest(&bbunit_##NAME##_elem); \
} \
diff --git a/include/platform.h b/include/platform.h
index 413c2224c..09c7ccd9c 100644
--- a/include/platform.h
+++ b/include/platform.h
@@ -76,8 +76,8 @@
# define UNUSED_PARAM_RESULT
#endif
-/* used by unit test machinery to run registration functions */
-#define INIT_LAST __attribute__ ((constructor(2000)))
+/* used by unit test machinery to run registration functions before calling main() */
+#define INIT_FUNC __attribute__ ((constructor))
/* -fwhole-program makes all symbols local. The attribute externally_visible
* forces a symbol global. */