tinycc/examples/ex_weak.c
2010-02-27 17:37:59 +01:00

12 lines
157 B
C
Executable File

#! /usr/local/bin/tcc -run
#include <tcclib.h>
extern void weak_f (void) __attribute__ ((weak));
int main ()
{
if (weak_f) {
weak_f();
}
}