FreeCalypso > hg > freecalypso-sw
view target-utils/libprintf/vprintf.c @ 821:5c4381b80bd2
g23m-aci/Makefile: everything hooked in
author | Space Falcon <falcon@ivan.Harhan.ORG> |
---|---|
date | Sun, 05 Apr 2015 18:00:32 +0000 |
parents | 40f607bb0a2c |
children |
line wrap: on
line source
#include <stdarg.h> extern void putchar(); int vprintf(fmt, ap) char *fmt; va_list ap; { return(_doprnt(fmt, ap, &putchar)); }