URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [branches/] [oc/] [gdb-5.0/] [libiberty/] [vprintf.c] - Rev 106
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