blog/helpers/elf-linkage/testing/multi/multib.c
2025-06-09 22:20:23 +02:00

6 lines
90 B
C

#include <stdio.h>
__attribute__((weak))
void conflict() {
puts("b");
}
void useb(){}