xref: /csrg-svn/lib/libc/stdlib/atol.c (revision 42633)
135103Sbostic /*
235103Sbostic  * Copyright (c) 1988 Regents of the University of California.
335103Sbostic  * All rights reserved.
435103Sbostic  *
5*42633Sbostic  * %sccs.include.redist.c%
635103Sbostic  */
735103Sbostic 
826543Sdonn #if defined(LIBC_SCCS) && !defined(lint)
9*42633Sbostic static char sccsid[] = "@(#)atol.c	5.6 (Berkeley) 06/01/90";
1035103Sbostic #endif /* LIBC_SCCS and not lint */
1122081Smckusick 
1242136Sbostic #include <stddef.h>
1342136Sbostic #include <stdlib.h>
1435103Sbostic 
151955Swnj long
1639475Sbostic atol(str)
1739475Sbostic 	char *str;
181955Swnj {
1939475Sbostic 	return(strtol(str, (char **)NULL, 10));
201955Swnj }
21