Subversion Repositories planix.SVN

Rev

Blame | Last modification | View Log | RSS feed

#include        <stdlib.h>

long
atol(const char *s)
{
        return(strtol(s, (char **)0, 10));
}