vbeinfo

diff src/dpmi.c @ 3:5b0ef094b8fd

backported changes from more recent VBE projects
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 07 Jan 2019 12:07:53 +0200
parents 4b33fa83e381
children
line diff
     1.1 --- a/src/dpmi.c	Wed Jul 26 21:08:55 2017 +0300
     1.2 +++ b/src/dpmi.c	Mon Jan 07 12:07:53 2019 +0200
     1.3 @@ -1,3 +1,4 @@
     1.4 +#ifdef __WATCOMC__
     1.5  #include "dpmi.h"
     1.6  
     1.7  void dpmi_real_int(int inum, struct dpmi_real_regs *regs)
     1.8 @@ -53,3 +54,6 @@
     1.9  		int 0x31
    1.10  	}
    1.11  }
    1.12 +#else
    1.13 +int stop_gcc_crying_about_empty_translation_units = 0;
    1.14 +#endif	/* __WATCOM__ */