Date: Wed, 1 Jan 2003 12:18:14 -0500 Message-Id: <200301011718.h01HIER06581@envy.delorie.com> X-Authentication-Warning: envy.delorie.com: dj set sender to dj AT delorie DOT com using -f From: DJ Delorie To: djgpp-workers AT delorie DOT com In-reply-to: <9003-Wed01Jan2003185908+0200-eliz@is.elta.co.il> Subject: Re: stubedit not using SEEK_SET References: <200301011505 DOT h01F5W616144 AT speedy DOT ludd DOT luth DOT se> <9003-Wed01Jan2003185908+0200-eliz AT is DOT elta DOT co DOT il> 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 > A simple omission, I guess. Please replace 0 with SEEK_SET. You'll probably want to add: #ifndef SEEK_SET #define SEEK_SET 0 #endif just to be the most portable.