annotate libiberty/vfprintf.c @ 22:0eb6cac880f0
add cbc example of quicksort.
author |
kent <kent@cr.ie.u-ryukyu.ac.jp> |
date |
Tue, 13 Oct 2009 17:15:58 +0900 |
parents |
a06113de4d67 |
children |
04ced10e8804 |
rev |
line source |
0
|
1 /* Provide a version vfprintf in terms of _doprnt.
|
|
2 By Kaveh Ghazi (ghazi@caip.rutgers.edu) 3/29/98
|
|
3 Copyright (C) 1998 Free Software Foundation, Inc.
|
|
4 */
|
|
5
|
|
6 #include "ansidecl.h"
|
|
7 #include <stdarg.h>
|
|
8 #include <stdio.h>
|
|
9 #undef vfprintf
|
|
10
|
|
11 int
|
|
12 vfprintf (FILE *stream, const char *format, va_list ap)
|
|
13 {
|
|
14 return _doprnt (format, ap, stream);
|
|
15 }
|