- t2ex
- bsd_source/lib/libc/src_bsd/stdio/fprintf.c - 2.0KB - 48 lines
44: va_start(ap, fmt);
45: ret = vfprintf(fp, fmt, ap);
46: va_end(ap);
- bsd_source/lib/libc/src_bsd/stdio/printf.c - 2.0KB - 48 lines
44: va_start(ap, fmt);
45: ret = vfprintf(stdout, fmt, ap);
46: va_end(ap);
- bsd_source/lib/libc/src_bsd/stdio/vprintf.c - 1.8KB - 40 lines
38: {
39: return (vfprintf(stdout, fmt, ap));
40: }
- t2ex_source/kernel/sysmain/src/network_sample/net_conf.c - 7.2KB - 233 lines
72: va_start(ap, format);
73: vfprintf(stdout, format, ap);
74: va_end(ap);