[EMAIL PROTECTED] (Himanshu Garg) wrote: > Could you give me an example by which I could use m4 for c > preprocessing such as that for replacing #include<file.h> by its > contents.
m4 wouldn't use the same syntax or search path as the C preprocessor, but it can do file inclusion: include(`/usr/include/file.h') See the m4 documentation for more. paul _______________________________________________ help-gnu-utils mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-gnu-utils
