SuperSpaceInvaderTurboApoca.../lib_headers/mingl/macros.h
2021-12-13 09:08:31 +01:00

20 lines
331 B
C

/**
*
* @file macros.h
* @author Alexandre Sollier
* @date Janvier 2020
* @version 1.0
* @brief Macros utiles
*
**/
#ifndef MACROS_H
#define MACROS_H
/**
* @brief Une macro permettant de marquer explicitement un paramètre de fonction comme étant inutilisé
*/
#define UNUSED(x) (void)(x)
#endif // MACROS_H