Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!wuarchive!usc!apple!well!knoll From: knoll@well.sf.ca.us (John Knoll) Newsgroups: comp.sys.mac.programmer Subject: Re: THINK C bug Message-ID: <23282@well.sf.ca.us> Date: 22 Feb 91 05:38:14 GMT References: <8396@ucdavis.ucdavis.edu> Organization: Whole Earth 'Lectronic Link, Sausalito, CA Lines: 13 Today, I was trying to use the Toolbox function "FixATan2" as described in Inside Mac 4. The linker couldn't find this function. I searched ALL of the ".h" files to find where it was declared, but it doesn't appear anywhere. I've used this function successfully in MPW C. Finally, I gave up and added the following to my code: pascal Fixed FixATan2(Fixed,Fixed) = {0xA818}; and now everthing is cool. What am I doing wrong? Where is this function declared?