[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: srfi-4.c: arithmetic on void pointers
From: |
Neil Jerram |
Subject: |
Re: srfi-4.c: arithmetic on void pointers |
Date: |
Sat, 11 Mar 2006 12:26:35 +0000 |
User-agent: |
Gnus/5.1007 (Gnus v5.10.7) Emacs/21.4 (gnu/linux) |
Mike Gran <address@hidden> writes:
> Hi,
>
> In srfi-4.c, pointer arithmetic on void pointers is done. This is a
> GNU C extension, and I think it is not C99. For non-GCC C, you might
> consider a cast to (char *) or something.
Thanks. I changed the declarations from void* to char*, as I think
that's a little neater than your patch.
Neil