Mailing-List: contact cygwin-help AT sourceware DOT cygnus DOT com; run by ezmlm List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT sourceware DOT cygnus DOT com Delivered-To: mailing list cygwin AT sourceware DOT cygnus DOT com Message-ID: <37E663E4.E800145B@swi.com> Date: Mon, 20 Sep 1999 12:42:12 -0400 From: Paul Berrevoets Organization: SWI Systemware/Halcyon Inc. X-Mailer: Mozilla 4.51 [en] (WinNT; U) X-Accept-Language: en MIME-Version: 1.0 To: cygwin-list Subject: lseek(0,...) in snapshot differs from b20.1 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Transfer-Encoding: 7bit #include #include #include int main() { int rc = lseek(0, (off_t)0, SEEK_CUR); printf("%d %d\n", rc, rc < 0 ? errno : 0); return 0; } Ouput using b20.1: 0 0 Output using snapshot 1999-09-17: -1 9 If this change is intentional, could you please explain the rationale? -- Regards, Paul Berrevoets -- Want to unsubscribe from this list? Send a message to cygwin-unsubscribe AT sourceware DOT cygnus DOT com