You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
187 B

  1. #include "weak_under_alias.h"
  2. void __weak__init() {}
  3. void __weak__fini() {}
  4. weak_under_alias(_init);
  5. weak_under_alias(_fini);
  6. void _exit(int code) {
  7. (void)code;
  8. while (1) {}
  9. }