From: "Sherlock" Newsgroups: comp.os.msdos.djgpp Subject: Using fix.h in DJGPP Lines: 21 X-Newsreader: Microsoft Outlook Express 4.72.3110.1 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Message-ID: Date: Tue, 16 Nov 1999 12:23:49 GMT NNTP-Posting-Host: 203.216.8.6 X-Complaints-To: abuse AT gol DOT com X-Trace: nnrp.gol.com 942755029 203.216.8.6 (Tue, 16 Nov 1999 21:23:49 JST) NNTP-Posting-Date: Tue, 16 Nov 1999 21:23:49 JST Organization: Global Online Japan To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com I am trying to use the fixed point class 'fix.h' in DJGPP, but am having trouble linking. This program works fine compiles and links fine: #include int main() { } but this program (below) has linker errors such as: - undefined reference to 'Fix::Fix(void)' - undefined reference to 'Fix::~Fix(void) #include int main() { Fix a; } What can i do to fix this?