aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/mlibc/stdio/printf.c
blob: b58289732558f9df0f1040bbcf323900c8ec0400 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdarg.h>
#include <mlibc/stdio.h>
#include <mlibc/string.h>
#include <mlibc/stdlib.h>

void printf(const char *fmt, ...)
{
    char *format = (char *) malloc(strlen(fmt));
    strcpy(format, fmt);
    va_list args;
    va_start(args, fmt);
    vprintf(format, args);
    va_end(args);
}