Path: utzoo!attcan!uunet!ogicse!oregon!jmeissen From: jmeissen@oregon.oacis.org (John Meissen) Newsgroups: comp.sys.amiga Subject: Re: Amiga.lib Message-ID: <421@oregon.oacis.org> Date: 16 Mar 90 17:48:41 GMT References: <14134@snow-white.udel.EDU> Organization: Oregon Advanced Computing Research, Beaverton, OR Lines: 13 > I do Blink Test.o Small.lib to Test and it tells me > that _printf is not defined. First of all, you are telling blink to include the entire library by specifying it as one of the included modules. You need to let it know it is a library by using the LIBRARY keyword: Blink Test.o LIB Small.lib to Test Also, who's compiler are you using? Be careful of doing I/O without setting up a run-time environment. Amiga.lib does have a version of printf(). Maybe Small.lib doesn't. The version in Amiga.lib will use the stdout entry set up by the CLI in the CLI structure portion of the process structure.