Path: utzoo!attcan!uunet!snorkelwacker!apple!uokmax!munnari.oz.au!goanna!ok From: ok@goanna.cs.rmit.oz.au (Richard A. O'Keefe) Newsgroups: comp.lang.c Subject: Re: How to link without stdio Message-ID: <3836@goanna.cs.rmit.oz.au> Date: 26 Sep 90 06:11:56 GMT References: <1990Sep25.161300.29421@phri.nyu.edu> Organization: Comp Sci, RMIT, Melbourne, Australia Lines: 11 In article <1990Sep25.161300.29421@phri.nyu.edu>, roy@alanine.phri.nyu.edu (Roy Smith) writes: > To make sure I got all of them, > what I'd like to do is force the linker to ignore any stdio routines in > /lib/libc.a The simplest thing is to use the "nm -u" command to find out which external symbols each of your object files wants, and to look for the stdio function and variable names among those symbols. That will tell you which of your files still refers to stdio. -- Fixed in the next release.