Ondřej Bílka wrote:
> nmalloc (size_t n, size_t s)
> {
> if (xalloc_oversized (n, s))
> NULL;
> return malloc (n * s);
> }OK, I see. This also needs to set errno, NO?
Ondřej Bílka wrote:
> nmalloc (size_t n, size_t s)
> {
> if (xalloc_oversized (n, s))
> NULL;
> return malloc (n * s);
> }OK, I see. This also needs to set errno, NO?