Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1882 clevermous 1
/* Copyright (C) 1994 DJ Delorie, see COPYING.DJ for details */
2
#include 
3
#include 
4
#include 
5
 
6
int
7
vprintf(const char *fmt, va_list ap)
8
{
9
  int len;
10
 
11
  len = _doprnt(fmt, ap, stdout);
12
  return (ferror(stdout) ? EOF : len);
13
}