From: Martin Str|mberg Subject: Re: newbie Q: meaning of __THROW in stdio.h? Newsgroups: comp.os.msdos.djgpp References: User-Agent: tin/1.4.4-20000803 ("Vet for the Insane") (UNIX) (NetBSD/1.5_BETA (alpha)) Message-ID: <1027889589.305998@queeg.ludd.luth.se> Cache-Post-Path: queeg.ludd.luth.se!unknown AT speedy DOT ludd DOT luth DOT se X-Cache: nntpcache 2.4.0b5 (see http://www.nntpcache.org/) Date: 28 Jul 2002 20:53:09 GMT Lines: 18 NNTP-Posting-Date: 28 Jul 2002 20:53:09 GMT NNTP-Posting-Host: queeg.ludd.luth.se X-Trace: 1027889589 news.luth.se 441 130.240.16.109 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Mitchell Laks wrote: : Hi. I am teaching myself C and C++ and was looking up the prototype of : a function in stdio.h and noticed that most of the functions had the : following prototype: : extern FILE *tmpfile (void) __THROW; Not in DJGPP. In DJGPP tmpfile() is prototyped: FILE * tmpfile(void); So either start using DJGPP or ask on a relevant newsgroup. Right, MartinS