URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [insight/] [libiberty/] [vprintf.c] - Rev 1774
Go to most recent revision | Compare with Previous | Blame | View Log
#ifdef __STDC__ #include <stdarg.h> #else #include <varargs.h> #endif #include <stdio.h> #include <ansidecl.h> #undef vprintf int vprintf (format, ap) const char *format; va_list ap; { return vfprintf (stdout, format, ap); }
Go to most recent revision | Compare with Previous | Blame | View Log