Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.c > #34746

Re: Sizes of pointers

From James Kuyper <jameskuyper@verizon.net>
Newsgroups comp.lang.c
Subject Re: Sizes of pointers
Date 2013-08-01 19:10 -0400
Organization Self
Message-ID <51FAEAEC.90007@verizon.net> (permalink)
References <kt82k2$2gp$1@dont-email.me> <6rhiv8pcm0lho8pjn7hsv39cinreecrn0o@4ax.com> <ktenuk$qk1$1@dont-email.me>

Show all headers | View raw


On 08/01/2013 06:43 PM, Stephen Sprunk wrote:
> On 31-Jul-13 12:30, Rosario1903 wrote:
>> i not see the reasons for distinguish pointers from unsigned
> 
> What about systems with signed pointers, such as x86-64?

A question came up awhile ago about whether pointers could be
meaningfully related to signed integers. I don't write the kind of code
where it makes any difference, so I didn't know whether there were any
such implementations, much less one as widely used as that one. I wish
someone had mentioned that during that discussion.

>> [and all the concern they generate in portability of C programs]
>> in not consider the pointer just as one fixed size unsigned for
>> example something as:
>> p32u32  *p;
>>
>> p is a pointer that can contain one 32 bit address [unsigned] that
>> point to one array of 32 bits unsigned
>>
>> would resolve all problems i see of undefinitions and portability of
>> programs for pointer "point of view"
>>
>> if people has need of 64 bit pointers to u32 somehting
>> p64u32  *p;
> 
> So, you're proposing hard-coding the size of various types, which means
> the code would gratuitously break when ported to a system that doesn't
> have pointers and/or integers of exactly the specified size?  How does
> that improve portability in any meaningful way?  It seems to me that
> would make portability problems worse, not better.

Possibly he's implying that pointers must be stored in exactly 32 or 64
bits, regardless of the size of hardware addresses, with the C
implementation being responsible for trimming or padding the pointers as
needed to make that work. p32u32 would give access to no more that 4GB
of different memory locations, even on systems which have Etabtyes of
memory installed. On systems which have only 64KB of memory installed,
only the 16 low-order bits of each pointer would be meaningful, the rest
would be wasted. It would need to be specified which pointer type the
unary & operator returns, or perhaps two different operators would be
needed, one for each pointer type?
It would be possible to mandate this; I don't see any advantages,
though, and I expect that adding such a mandate to the standard would be
a good way to kill that version of C, permanently.

Back to comp.lang.c | Previous | NextPrevious in thread | Next in thread | Find similar


Thread

Sizes of pointers "James Harris \(es\)" <james.harris.1@gmail.com> - 2013-07-30 11:02 +0100
  Re: Sizes of pointers Kleuske <kleuske@nowhere.net> - 2013-07-30 11:04 +0000
    Re: Sizes of pointers Noob <root@127.0.0.1> - 2013-07-30 14:14 +0200
      Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-07-30 14:38 -0700
        Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-07-30 17:01 -0500
          Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-07-30 16:03 -0700
          Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-01 12:25 -0500
            Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-02 18:37 -0500
              Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-03 00:42 -0500
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-03 13:36 -0500
                Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-04 01:57 -0500
              Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-03 21:04 -0700
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-04 00:43 -0500
                Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-08 03:41 -0700
        Re: Sizes of pointers Noob <root@127.0.0.1> - 2013-07-31 13:29 +0200
          Re: Sizes of pointers Phil Carmody <thefatphil_demunged@yahoo.co.uk> - 2013-08-01 15:47 +0300
  Re: Sizes of pointers Ben Bacarisse <ben.usenet@bsb.me.uk> - 2013-07-30 13:09 +0100
  Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-07-30 08:11 -0400
  Re: Sizes of pointers Eric Sosman <esosman@comcast-dot-net.invalid> - 2013-07-30 08:33 -0400
    Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-07-30 08:38 -0500
    Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-07-30 11:54 -0700
      Re: Sizes of pointers Bart van Ingen Schenau <bart@ingen.ddns.info.invalid> - 2013-08-01 15:45 +0000
        Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-01 12:16 -0400
          Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-01 18:37 +0000
            Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-01 21:29 -0500
              Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-01 22:43 -0500
                Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-02 00:48 -0500
                Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-02 10:44 -0700
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-02 13:33 -0500
                Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-02 14:46 -0400
                Re: Sizes of pointers gazelle@shell.xmission.com (Kenny McCormack) - 2013-08-02 19:55 +0000
                Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-03 09:46 +0200
                Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-03 11:22 -0700
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-03 13:39 -0500
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-02 18:37 +0000
            Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-03 09:35 -0700
              Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-04 02:07 -0500
                Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-08 03:00 -0700
                Re: Sizes of pointers Malcolm McLean <malcolm.mclean5@btinternet.com> - 2013-08-08 05:39 -0700
                Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-08 16:00 -0700
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-08 13:27 +0000
                Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-08 16:06 -0700
                Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-09 00:49 -0500
          Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-03 09:30 -0700
        Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-03 08:59 -0700
          Re: Sizes of pointers Bart van Ingen Schenau <bart@ingen.ddns.info.invalid> - 2013-08-04 17:55 +0000
            Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-08 02:41 -0700
  Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-07-30 14:52 -0700
    Re: Sizes of pointers "James Harris \(es\)" <james.harris.1@gmail.com> - 2013-07-31 10:43 +0100
      Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-07-31 07:34 -0400
      Re: Sizes of pointers Richard Damon <Richard@Damon-Family.org> - 2013-07-31 08:28 -0400
      Re: Sizes of pointers Malcolm McLean <malcolm.mclean5@btinternet.com> - 2013-07-31 16:54 -0700
  Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-07-31 19:30 +0200
    Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-01 12:29 -0500
      Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-01 13:54 -0400
        Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-01 19:01 +0000
        Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-01 21:50 -0500
          Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-02 03:22 +0000
            Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-02 01:35 -0500
            Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-04 01:24 -0500
          Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-01 23:31 -0400
            Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-02 01:04 -0500
              Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-02 16:25 +0000
            Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-02 09:29 +0200
            Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-02 10:51 -0700
              Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-02 14:43 -0400
                Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-02 14:39 -0700
                Re: Sizes of pointers Malcolm McLean <malcolm.mclean5@btinternet.com> - 2013-08-02 17:22 -0700
                Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-02 20:00 -0700
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-03 05:40 +0000
                Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-03 09:38 -0400
              Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-02 18:47 +0000
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-02 18:28 -0500
              Re: Sizes of pointers christian.bau@cbau.wanadoo.co.uk - 2013-08-06 13:05 -0700
                Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-06 16:36 -0400
                Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-06 17:44 -0700
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-06 20:40 +0000
      Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-01 20:19 +0200
        Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-01 21:32 -0500
    Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-01 17:43 -0500
      Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-01 19:10 -0400
        Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-01 22:32 -0500
          Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-03 11:50 -0700
            Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-03 14:48 -0500
              Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-03 16:53 -0400
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-03 23:31 -0500
                Re: Sizes of pointers Philip Lantz <prl@canterey.us> - 2013-08-03 23:56 -0700
                Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-09 20:53 +0200
                Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-09 21:18 +0200
              Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-08 10:39 -0700
                Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-08 11:29 -0700
                Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-08 17:09 -0700
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-09 00:33 +0000
            Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-09 19:50 +0000
              [OT] Re: Sizes of pointers Eric Sosman <esosman@comcast-dot-net.invalid> - 2013-08-09 16:28 -0400
              Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-10 09:51 +0200
                Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-10 10:46 +0200
      Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-02 09:24 +0200
        Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-02 16:35 +0000
          Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-02 17:47 -0500
            Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-04 03:58 -0700
              Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-04 09:17 -0500
                Re: Sizes of pointers Malcolm McLean <malcolm.mclean5@btinternet.com> - 2013-08-04 07:43 -0700
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-05 04:47 +0000
                [OT] gravity James Kuyper <jameskuyper@verizon.net> - 2013-08-05 06:52 -0400
                Re: [OT] gravity Malcolm McLean <malcolm.mclean5@btinternet.com> - 2013-08-05 11:29 -0700
                Re: [OT] gravity James Kuyper <jameskuyper@verizon.net> - 2013-08-05 15:02 -0400
                Re: [OT] gravity glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-05 18:42 +0000
                Re: [OT] gravity Robert Wessel <robertwessel2@yahoo.com> - 2013-08-05 20:01 -0500
                Re: [OT] gravity James Kuyper <jameskuyper@verizon.net> - 2013-08-05 23:34 -0400
                Hidden Assumptions Re: [OT] gravity Siri Cruise <chine.bleu@yahoo.com> - 2013-08-05 22:12 -0700
                Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-04 19:40 +0200
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-04 15:18 -0500
                Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-04 15:02 -0700
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-04 18:47 -0500
                Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-04 19:40 -0700
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-05 04:53 +0000
                Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-04 22:44 -0700
                Re: Sizes of pointers Malcolm McLean <malcolm.mclean5@btinternet.com> - 2013-08-05 02:00 -0700
                Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-05 07:48 -0700
                Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-08 04:13 -0700
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-08 13:57 +0000
                Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-08 16:30 -0700
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-08 10:34 -0500
                Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-08 16:55 -0700
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-09 00:53 +0000
              Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-05 04:31 +0000
                Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-08 04:48 -0700
              Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-05 23:16 -0500
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-06 01:01 -0500
                Re: Sizes of pointers "James Harris" <james.harris.1@gmail.com> - 2013-08-06 10:11 +0100
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-06 07:20 -0500
                Re: Sizes of pointers "James Harris" <james.harris.1@gmail.com> - 2013-08-06 15:33 +0100
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-06 14:23 -0500
                Re: Sizes of pointers "James Harris" <james.harris.1@gmail.com> - 2013-08-06 23:18 +0100
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-06 23:45 +0000
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-07 05:59 -0500
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-07 16:44 +0000
                Re: Sizes of pointers "James Harris \(es\)" <james.harris.1@gmail.com> - 2013-08-07 18:40 +0100
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-08 01:01 -0500
                Re: Sizes of pointers "James Harris" <james.harris.1@gmail.com> - 2013-08-08 07:40 +0100
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-08 03:13 -0500
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-08 14:10 +0000
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-08 11:15 -0500
                Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-08 11:44 -0500
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-08 17:34 +0000
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-08 17:16 +0000
                Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-09 01:01 -0500
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-09 11:03 +0000
                Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-08 10:15 -0500
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-06 20:47 +0000
                Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-06 16:28 -0500
                Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-06 13:18 -0500
                Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-06 13:21 -0500
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-06 14:10 -0500
                Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-06 14:42 -0500
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-06 20:52 +0000
                Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-06 16:39 -0500
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-06 23:50 +0000
                Re: Sizes of pointers Tim Rentsch <txr@alumni.caltech.edu> - 2013-08-08 16:12 -0700
          Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-08 19:18 +0200
            Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-08 11:27 -0700
              Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-08 21:58 +0200
                Re: Sizes of pointers Lew Pitcher <lew.pitcher@digitalfreehold.ca> - 2013-08-08 16:25 -0400
                Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-09 08:50 +0200
                Re: Sizes of pointers Lew Pitcher <lew.pitcher@digitalfreehold.ca> - 2013-08-09 11:35 -0400
                Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-09 11:49 -0400
                Re: Sizes of pointers Lew Pitcher <lew.pitcher@digitalfreehold.ca> - 2013-08-09 12:01 -0400
                Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-09 10:55 -0700
                Re: Sizes of pointers Malcolm McLean <malcolm.mclean5@btinternet.com> - 2013-08-09 09:04 -0700
                Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-09 19:23 +0200
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-09 18:42 +0000
                Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-09 15:12 -0400
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-09 19:56 +0000
                Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-09 16:28 -0400
                Re: Sizes of pointers christian.bau@cbau.wanadoo.co.uk - 2013-08-10 18:26 -0700
                Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-08 13:40 -0700
                Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-08 21:30 -0400
                Re: Sizes of pointers Ike Naar <ike@iceland.freeshell.org> - 2013-08-10 05:52 +0000
                Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-10 09:54 +0200
                Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-10 07:46 -0400
                Re: Sizes of pointers Malcolm McLean <malcolm.mclean5@btinternet.com> - 2013-08-10 04:54 -0700
                Re: Sizes of pointers David Brown <david.brown@removethis.hesbynett.no> - 2013-08-10 14:51 +0200
                Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-10 11:12 -0700
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-10 19:14 +0000
                Re: Sizes of pointers Richard Damon <Richard@Damon-Family.org> - 2013-08-10 20:39 -0400
                Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-10 20:29 -0700
                Re: Sizes of pointers Malcolm McLean <malcolm.mclean5@btinternet.com> - 2013-08-10 21:51 -0700
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-11 05:47 +0000
                Re: Sizes of pointers Malcolm McLean <malcolm.mclean5@btinternet.com> - 2013-08-10 23:15 -0700
                Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-11 02:20 -0700
              Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-09 16:46 +0200
            Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-09 08:12 +0200
        Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-09 14:04 -0700
          Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-10 10:45 +0200
            Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-10 11:14 -0700
      Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-02 10:34 +0200
        Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-02 18:12 -0500
          Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-03 07:04 +0200
            Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-03 07:07 +0200
              Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-03 09:46 +0200
                Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-03 11:25 -0700
            Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-03 00:50 -0500
              Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-03 09:57 +0200
                Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-04 01:38 -0500
            Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-03 13:12 -0500
              Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-04 19:40 +0200
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-04 14:40 -0500
                Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-04 14:24 -0700
                Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-05 19:31 +0200
                Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-05 19:51 +0200
                Re: Sizes of pointers Eric Sosman <esosman@comcast-dot-net.invalid> - 2013-08-05 14:20 -0400
                Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-05 21:57 +0200
                Re: Sizes of pointers Eric Sosman <esosman@comcast-dot-net.invalid> - 2013-08-05 16:21 -0400
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-05 16:39 -0500
                Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-06 07:00 +0200
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-06 01:18 -0500
                Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-06 09:23 +0200
                Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-06 09:54 +0200
                Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-06 12:40 -0500
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-06 06:44 -0500
                Re: Sizes of pointers Keith Thompson <kst-u@mib.org> - 2013-08-06 08:06 -0700
                Re: Sizes of pointers gazelle@shell.xmission.com (Kenny McCormack) - 2013-08-06 15:48 +0000
                Re: Sizes of pointers "James Harris" <james.harris.1@gmail.com> - 2013-08-06 10:17 +0100
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-06 06:58 -0500
                Re: Sizes of pointers "James Harris" <james.harris.1@gmail.com> - 2013-08-06 15:44 +0100
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-06 14:29 -0500
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-06 21:08 +0000
                Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-06 16:52 -0500
                Re: Sizes of pointers "James Harris" <james.harris.1@gmail.com> - 2013-08-06 23:29 +0100
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-06 21:06 +0000
                Re: Sizes of pointers Eric Sosman <esosman@comcast-dot-net.invalid> - 2013-08-06 08:16 -0400
                Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-06 09:19 +0200
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-06 06:53 -0500
                Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-06 18:34 +0200
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-08 01:17 -0500
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-05 22:00 +0000
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-05 22:15 -0500
                Re: Sizes of pointers Eric Sosman <esosman@comcast-dot-net.invalid> - 2013-08-06 08:37 -0400
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-06 21:18 +0000
                Re: Sizes of pointers Eric Sosman <esosman@comcast-dot-net.invalid> - 2013-08-06 18:08 -0400
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-07 00:09 +0000
                Re: Sizes of pointers Rosario1903 <Rosario@invalid.invalid> - 2013-08-06 09:20 +0200
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-06 06:54 -0500
                Re: Sizes of pointers "James Harris" <james.harris.1@gmail.com> - 2013-08-06 10:41 +0100
                Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-06 08:37 -0400
                Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-06 08:06 -0500
                Re: Sizes of pointers "James Harris" <james.harris.1@gmail.com> - 2013-08-06 15:52 +0100
                Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-06 11:38 -0400
                Re: Sizes of pointers "James Harris" <james.harris.1@gmail.com> - 2013-08-06 17:17 +0100
                Re: Sizes of pointers Malcolm McLean <malcolm.mclean5@btinternet.com> - 2013-08-06 10:31 -0700
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-06 21:26 +0000
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-06 21:21 +0000
                Re: Sizes of pointers Eric Sosman <esosman@comcast-dot-net.invalid> - 2013-08-06 08:49 -0400
                Re: Sizes of pointers "James Harris" <james.harris.1@gmail.com> - 2013-08-06 16:12 +0100
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-06 21:36 +0000
                Re: Sizes of pointers Phil Carmody <thefatphil_demunged@yahoo.co.uk> - 2013-08-07 16:38 +0300
                Re: Sizes of pointers Phil Carmody <thefatphil_demunged@yahoo.co.uk> - 2013-08-07 17:02 +0300
                Re: Sizes of pointers Thomas Jahns <jahns@idontlikespam.dkrz.de> - 2013-08-07 11:01 +0200
                Re: Sizes of pointers "James Harris" <james.harris.1@gmail.com> - 2013-08-07 10:41 +0100
                Re: Sizes of pointers Robert Wessel <robertwessel2@yahoo.com> - 2013-08-07 07:57 -0500
                Re: Sizes of pointers glen herrmannsfeldt <gah@ugcs.caltech.edu> - 2013-08-07 16:48 +0000
          Re: Sizes of pointers James Kuyper <jameskuyper@verizon.net> - 2013-08-03 10:07 -0400
            Re: Sizes of pointers Stephen Sprunk <stephen@sprunk.org> - 2013-08-03 13:47 -0500

csiph-web