Archived
1
0

better logistics of libraries location

This commit is contained in:
Erick
2022-02-05 01:37:07 +01:00
parent 767288e1bc
commit 55aef6ed40
+4 -2
View File
@@ -4,7 +4,7 @@
Written by Erick Ahmed, 2022
*/
//#define __UNIX
//#define __UNIX // uncomment only if compiling on unix-based operative system
/* universal libraries */
#include <stdint.h>
@@ -13,6 +13,8 @@
/* unix only libraries */
#ifdef __UNIX
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
@@ -21,7 +23,7 @@
#include <sys/types.h>
#include <sys/termios.h>
#include <sys/mman.h>
/* windows only */
/* windows only libraries */
#else
#include <Windows.h>
#include <conio.h>