Initial release commit
This commit is contained in:
8
include/platform_agnostic.h
Normal file
8
include/platform_agnostic.h
Normal file
@@ -0,0 +1,8 @@
|
||||
#pragma once
|
||||
#include <stdio.h>
|
||||
#if defined (WIN32) || defined (_WIN32)
|
||||
FILE* popen(const char* cmd, const char* mode) { return _popen(cmd, mode); }
|
||||
int pclose(FILE* stream) { return _pclose(stream); };
|
||||
#else
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user