xref: /original-bsd/lib/libc/stdlib/atol.c (revision b21da0a0)
1 /*
2  * Copyright (c) 1988 Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  */
7 
8 #if defined(LIBC_SCCS) && !defined(lint)
9 static char sccsid[] = "@(#)atol.c	5.7 (Berkeley) 02/23/91";
10 #endif /* LIBC_SCCS and not lint */
11 
12 #include <stddef.h>
13 #include <stdlib.h>
14 
15 long
16 atol(str)
17 	const char *str;
18 {
19 	return(strtol(str, (char **)NULL, 10));
20 }
21