From mboxrd@z Thu Jan 1 00:00:00 1970 From: Greg Chicares To: help-gcc@gnu.org Subject: Re: Problems using g++ when using far modifier Date: Sat, 01 Apr 2000 00:00:00 -0000 Message-ID: <38716312.E94AAEA3@mindspring.com> References: <20000103202834.12430.00000216@ng-fm1.aol.com> X-SW-Source: 2000-q1/msg00030.html Message-ID: <20000401000000.UglUBJg5SvbqKAN1gsQmAwnSeZ7u6NQ4YGYtbuPTXdY@z> > I can't compile whit g++ when I code a function or variable that needs to use > the far, _far, __far, _far16, or __far16 modifiers. Is there an specific > library file that I need to include? I've never seen those used except in 16-bit programs. If you want to compile a 32-bit program from source that was originally written with a 16-bit environment in mind, you can just #define far #define _far and so on to eliminate them.