mirror of
https://github.com/mirror/tinycc.git
synced 2025-01-07 04:40:08 +08:00
12 lines
157 B
C
Executable File
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();
|
|
}
|
|
}
|