[BACK]Return to atoll.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libc / stdlib

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/lib/libc/stdlib/atoll.c between version 1.5 and 1.6

version 1.5, 2003/10/27 00:12:42 version 1.6, 2012/06/25 22:32:45
Line 57  __weak_alias(atoll, _atoll)
Line 57  __weak_alias(atoll, _atoll)
 #if !HAVE_ATOLL  #if !HAVE_ATOLL
 /* LONGLONG */  /* LONGLONG */
 long long int  long long int
 atoll(str)  atoll(const char *str)
         const char *str;  
 {  {
         return (strtoll(str, (char **)NULL, 10));          return (strtoll(str, (char **)NULL, 10));
 }  }

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6

CVSweb <webmaster@jp.NetBSD.org>