cOMS/Utils/Portability.h
2022-10-23 01:45:41 -07:00

17 lines
328 B
C

/**
* Karaka
*
* @package Utils
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://karaka.app
*/
#ifndef UTILS_PORTABILITY_H
#define UTILS_PORTABILITY_H
#ifdef __unix
#define fopen_s(pFile, filename, mode) ((*(pFile)) = fopen((filename), (mode))) == NULL
#endif
#endif