/* * Copyright (C) 2017 - This file is part of libecc project * * Authors: * Ryad BENADJILA * Arnaud EBALARD * Jean-Pierre FLORI * * Contributors: * Nicolas VIVET * Karim KHALFALLAH * * This software is licensed under a dual BSD and GPL v2 license. * See LICENSE file at the root folder of the project. */ #include #ifdef WITH_STDLIB #include #include void ext_printf(const char *format, ...) { va_list arglist; va_start(arglist, format); vprintf(format, arglist); va_end(arglist); } #else #error "print.c: you have to implement ext_printf" #endif