Date: Fri, 26 Jan 2001 09:27:40 -0500 Message-Id: <200101261427.JAA05798@envy.delorie.com> X-Authentication-Warning: envy.delorie.com: dj set sender to dj AT envy DOT delorie DOT com using -f From: DJ Delorie To: djgpp-workers AT delorie DOT com In-reply-to: <200101260749.IAA04930@lws256.lu.erisoft.se> (message from Martin Stromberg on Fri, 26 Jan 2001 08:49:59 +0100 (MET)) Subject: Re: lfilelen patch References: <200101260749 DOT IAA04930 AT lws256 DOT lu DOT erisoft DOT se> Reply-To: djgpp-workers AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp-workers AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > > + long long __lfilelength (int); > > + > > + long long > > + __lfilelength(int fhandle) > > What is the prototype above for? The function is defined immediately > after... All functions must be prototyped, else they fail djgpp's massively paranoid warning settings. However, prototypes for user-visible functions should go in the appropriate header file; inline prototypes are just for static functions.