On Wed, 13 Jun 2018, Jilles Tjoelker wrote:
On Wed, Jun 13, 2018 at 08:03:13PM +1000, Bruce Evans wrote:
On Wed, 13 Jun 2018, Eitan Adler wrote:
Log:
libc: remove explicit cast NULL in atoi
There isn't any reason to cast NULL so just remove it. Noticed when
cleaning up top.
There ar
On Wed, Jun 13, 2018 at 08:03:13PM +1000, Bruce Evans wrote:
> On Wed, 13 Jun 2018, Eitan Adler wrote:
> > Log:
> > libc: remove explicit cast NULL in atoi
> > There isn't any reason to cast NULL so just remove it. Noticed when
> > cleaning up top.
> There are many reasons to cast NULL for al
On Wed, 13 Jun 2018, Eitan Adler wrote:
Log:
libc: remove explicit cast NULL in atoi
There isn't any reason to cast NULL so just remove it. Noticed when
cleaning up top.
There are many reasons to cast NULL for all members of the ato*() family:
- it is required if no prototype is in scope
-