On Tue, May 19, 2009 at 3:54 AM, Lori Nagel <[email protected]> wrote: > > I've been using gcc in Linux and cc in Unix. [...] > What I want to know is if there any easy way I could find out where my > .h files are on my computers such as stdio.h?
[...@pjhxps ~]# locate stdio.h [<cross platform headers omitted>] /usr/include/stdio.h /usr/include/bits/stdio.h /usr/include/glib-2.0/glib/gstdio.h /usr/lib/perl5/5.10.0/i386-linux-thread-multi/CORE/nostdio.h [...@pjhxps ~]# find / | grep stdio.h 2>/dev/null /usr/include/bits/stdio.h /usr/include/glib-2.0/glib/gstdio.h /usr/include/stdio.h /usr/lib/perl5/5.10.0/i386-linux-thread-multi/CORE/nostdio.h [<cross platform headers omitted>] [...@pjhxps ~]# -- PJH http://shabbleland.myminicity.com/com http://www.chavgangs.com/register.php?referer=9375
