Subversion Repositories HelenOS-historic

Rev

Rev 1234 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1234 Rev 1623
Line 28... Line 28...
28
 
28
 
29
#include <io/printf_core.h>
29
#include <io/printf_core.h>
30
#include <stdio.h>
30
#include <stdio.h>
31
#include <stdio.h>
31
#include <stdio.h>
32
 
32
 
-
 
33
/** Print formatted text.
-
 
34
 * @param fmt   format string
-
 
35
 * \see For more details about format string see printf_core.
-
 
36
 */
33
int printf(const char *fmt, ...)
37
int printf(const char *fmt, ...)
34
{
38
{
35
    int ret;
39
    int ret;
36
    va_list args;
40
    va_list args;
37
 
41