From: eplmst AT lu DOT erisoft DOT se (Martin Stromberg) Newsgroups: comp.os.msdos.djgpp Subject: Re: C++, complex, etc Date: 23 May 2000 07:19:58 GMT Organization: Ericsson Erisoft AB, Sweden Lines: 14 Message-ID: <8gdbeu$dke$1@antares.lu.erisoft.se> References: <0rneisomj48fm3khdpdodsilqpndjqd7do AT 4ax DOT com> <1osjis87hetlomjooiv6prc0iev46cncdt AT 4ax DOT com> <200005230314 DOT XAA01009 AT envy DOT delorie DOT com> NNTP-Posting-Host: lws256.lu.erisoft.se X-Newsreader: TIN [version 1.2 PL2] To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com DJ Delorie (dj AT delorie DOT com) wrote: : > So ptrdiff_t == ssize_t? : Ideally, ptrdiff_t would be one bit larger than ssize_t, and it would : be signed. Unfortunately, the 386 doesn't have a 33-bit signed type, : so we make do with a 32-bit signed type. So we should change ptrdiff_t to "signed long long int"? Right, MartinS