From: Andrew Newsgroups: comp.os.msdos.djgpp Subject: .h files unrecognised Date: Sat, 14 Feb 1998 12:43:46 +0000 Organization: Cable Online Limited Lines: 11 Message-ID: <34E59182.80F@which.net> Reply-To: j DOT martin AT which DOT net NNTP-Posting-Host: p41-wigeon-gui.tch.which.net Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk I have tried to install djgpp on my pc but when I run a small test program it fails to detect the stdio.h file even though all the .h files are in the same directory as the program. If I enclose the stdio.h in quotes and not angle brackets ie. "stdio.h" not , then the program can find the stdio.h file but it cannot find any of the files that stdio.h calls. Any help would be greatfully appeciated. The program I have been trying is: #include void main (void) { printf ("Hello"); }