Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!tut.cis.ohio-state.edu!rutgers!ucsd!ames!lll-winken!uunet!yale!spolsky-joel From: spolsky-joel@CS.YALE.EDU (Joel Spolsky) Newsgroups: comp.binaries.ibm.pc.d Subject: Re: compiling fiz with turbo c 1.0 Message-ID: <54762@yale-celray.yale.UUCP> Date: 25 Mar 89 05:24:54 GMT References: <2260@vu-vlsi.Villanova.EDU> Sender: root@yale.UUCP Reply-To: spolsky-joel@CS.YALE.EDU (Joel Spolsky) Organization: Yale University Computer Science Dept, New Haven CT 06520-2158 Lines: 25 In article <2260@vu-vlsi.Villanova.EDU> 16448591@VUVAXCOM.BITNET (Mark Schaffer) writes: > >are two unresolved things in the file portable.c: _isupper and _toascii >which file are these routines supposed to be, or is there something missing. >(I am compiling the fiz program with the fiz.prj file with tc1.0) > >---Mark Schaffer >16448591@vuvaxcom.bitnet 16448591@excalibur.UUCP guest@vu-vlsi.UUCP Mark, Try two things: - add #include to the offending file(s) - replace all mentions of _isupper with isupper and _toascii with toascii in the source code. Or use a later version of Turbo C which defines these macros (TC1.0 did not have _is... functions). +----------------+----------------------------------------------------------+ | Joel Spolsky | bitnet: spolsky@yalecs.bitnet uucp: ...!yale!spolsky | | | internet: spolsky@cs.yale.edu voicenet: 203-436-1483 | +----------------+----------------------------------------------------------+ #include