1 /* 2 Copyright (c) 1990 Regents of the University of California. 3 All rights reserved. 4 */ 5 /* 6 * Andy Wilson, 2-Oct-89. 7 */ 8 9 #include <stdlib.h> 10 #include <_ansi.h> 11 12 #ifndef _REENT_ONLY 13 long atol(const char * s)14atol (const char *s) 15 { 16 return strtol (s, NULL, 10); 17 } 18 #endif /* !_REENT_ONLY */ 19