Added linux support

This commit is contained in:
David Anderson
2005-07-27 16:58:18 +00:00
parent 94d3b31f40
commit 0de288139d
4 changed files with 64 additions and 2 deletions

15
compiler/amxxpc/getch.h Executable file
View File

@ -0,0 +1,15 @@
/* Extremely inefficient but portable POSIX getch(), see getch.c */
#ifndef GETCH_H
#define GETCH_H
#if defined __cplusplus
extern "C" {
#endif
int getch(void);
int kbhit(void);
#if defined __cplusplus
}
#endif
#endif /* GETCH_H */