URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [binutils-2.20.1/] [ld/] [testsuite/] [ld-elfweak/] [main.c] - Rev 205
Go to most recent revision | Compare with Previous | Blame | View Log
#include <stdio.h> #pragma weak foo extern void foo (); extern void foobar (); void foo () { printf ("weak foo\n"); } int main () { foobar (); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log