mirror of
https://github.com/VARCem/PDCurses.git
synced 2026-09-24 15:55:14 +00:00
Fix for building under Innotek C (I hope). Report by Elbert Pol, fix
courtesy of Paul Smedley.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
/* Public Domain Curses */
|
||||
|
||||
/* $Id: pdcos2.h,v 1.8 2008/07/13 06:36:31 wmcbrine Exp $ */
|
||||
/* $Id: pdcos2.h,v 1.9 2008/08/14 06:38:35 wmcbrine Exp $ */
|
||||
|
||||
#ifdef _MSC_VER
|
||||
# define USE_OS2_H 1 /* Use the os2.h for the compiler */
|
||||
@@ -36,7 +36,11 @@ typedef void * SEG16 ptr_16;
|
||||
|
||||
#else
|
||||
# ifdef __EMX__
|
||||
# define PDCTHUNK(x) ((PCH)_emx_32to16(x))
|
||||
# ifdef __INNOTEK_LIBC__
|
||||
# define PDCTHUNK(x) ((PCH)_libc_32to16(x))
|
||||
# else
|
||||
# define PDCTHUNK(x) ((PCH)_emx_32to16(x))
|
||||
# endif
|
||||
# endif
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user