> > > I just wrote this little program to demonstrate a possible flaw in both
> > > malloc and calloc.
> > >
> > > If I allocate a the simplest memory region from main(), one out of three
> > > optimization flags fail.
> > > If I allocate the same region from a function, three out of three
> > >
From: Alejandro Colomar
> Sent: 02 October 2020 09:25
> > For 'void *' you should also mention that one cannot use arithmetic on
> > void * pointers, so they're special in that way too.
>
> Good suggestion!
Except that is a gcc extension that is allowed in the kernel.
> > Also, you should
>