orton_runner/lib/my_stdio/my_vdprintf.c

13 lines
196 B
C
Raw Normal View History

2019-01-20 11:55:38 +01:00
/*
** 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);
}