orton_runner/lib/my_stdio/my_vdprintf.c

13 lines
196 B
C

/*
** EPITECH PROJECT, 2018
** task01
** File description:
** I do task
*/
#include "lib/my_stdio.h"
void my_vdprintf(int fd, const char *format, va_list ap)
{
my_vfprintf(fd, format, ap);
}