X-Authentication-Warning: delorie.com: mail set sender to djgpp-workers-bounces using -f Date: Fri, 3 Aug 2007 16:34:21 -0400 Message-Id: <200708032034.l73KYLCX005759@envy.delorie.com> From: DJ Delorie To: djgpp-workers AT delorie DOT com In-reply-to: <200708032234.30007.juan.guerrero@gmx.de> (message from Juan Manuel Guerrero on Fri, 3 Aug 2007 22:34:29 +0200) Subject: Re: fseeko and ftello References: <200708032234 DOT 30007 DOT juan DOT guerrero AT gmx DOT de> 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 > fseeko() and ftello() are both declared in stdio.h an require off_t, so I > have replaced the inclusion of djtypes.h with types.h in stdio.h. If this > is not wanted/correct, please let me know how to solve the issue. Nope, what you want to do is add a __DJ_off_t chunk to stdio much like there already is for __DJ_size_t. As per ISO specs, headers can't include each other, so we use things like djtypes.h to stay properly namespace-clean.