URL
https://opencores.org/ocsvn/open8_urisc/open8_urisc/trunk
Subversion Repositories open8_urisc
[/] [open8_urisc/] [trunk/] [gnu/] [binutils/] [ld/] [testsuite/] [ld-elf/] [dl2main.c] - Rev 95
Go to most recent revision | Compare with Previous | Blame | View Log
#include <stdio.h> extern int foo; extern void bar (void); void xxx (void) { printf ("MAIN\n"); } int main (void) { foo = 1; bar (); if (foo == -1) printf ("OK1\n"); else if (foo == 1) printf ("OK2\n"); return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log