From owner-cvs-include Mon May 11 02:25:53 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA10585 for cvs-include-outgoing; Mon, 11 May 1998 02:25:53 -0700 (PDT) (envelope-from owner-cvs-include) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA10521; Mon, 11 May 1998 02:25:41 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA28385; Mon, 11 May 1998 02:22:22 -0700 (PDT) Date: Mon, 11 May 1998 02:22:22 -0700 (PDT) Message-Id: <199805110922.CAA28385@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-include@FreeBSD.ORG Subject: cvs commit: src/include stdlib.h Sender: owner-cvs-include@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk jb 1998/05/11 02:22:22 PDT Modified files: include stdlib.h Log: Change the return types for strtoq and strtouq to int64_t and u_int64_t instead of long long and unsigned long long. Really they should be quad_t and u_quad_t, but that would require sys/types.h and this header only includes machine/types.h. The difference here is that int64_t and u_int64_t on alpha are long and unsigned long, not long long etc. This is required to pass gcc's type checking where long != long long even though they are the same size of alpha. Revision Changes Path 1.13 +2 -3 src/include/stdlib.h