Re: division with long long
Re: division with long long
- Subject: Re: division with long long
- From: Izidor Jerebic <email@hidden>
- Date: Fri, 21 Dec 2001 09:40:53 +0100
On Wednesday, December 19, 2001, at 12:01 PM, Mason Mark wrote:
Isn't there some library that ships with Mac OS X which has functions for
doing division with 64-bit long long integers? I believe libgcc has such
stuff, but was almost certain that there is something already on my mac
where these functions are found.
Back in OpenStep (m68k,intel) days there was no need to have a library to
do that. Just write:
long long a, b, c ;
c = a / b ;
I do not know what happened since then with gcc and support for long long
on powerpc.
izidor