tinycc/examples/ex_weak.c

12 lines
157 B
C
Raw Normal View History

2010-02-27 16:37:59 +00:00
#! /usr/local/bin/tcc -run
#include <tcclib.h>
extern void weak_f (void) __attribute__ ((weak));
int main ()
{
if (weak_f) {
weak_f();
}
}