mirror of
https://github.com/Karaka-Management/cOMS.git
synced 2026-01-22 15:58:40 +00:00
17 lines
328 B
C
Executable File
17 lines
328 B
C
Executable File
/**
|
|
* 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 |