[c-prog] Re: Disable printf

2006-12-06 Thread Nico Heinze
--- In c-prog@yahoogroups.com, kldan_ng [EMAIL PROTECTED] wrote: I am working on a Memory Footprint Reduction project. I came across an idea to disable all printf statements so that less memory is required. In addition, when there is no single printf statement, the printf library will not be

[c-prog] Re: Disable printf

2006-12-01 Thread Pedro Izecksohn
--- kldan_ng wrote: I would need to put a #include common.h line into each c file. ... Is there any way to insert the line automatically into each c file? for c in old/*.c ; do cat insert $c new/$c ; done ; You must create new/old/