* wcsmbs/wchar.h (wcstoll): Fix comment, function returns value of
authorUlrich Drepper <drepper@redhat.com>
Fri, 19 Jan 2007 22:59:32 +0000 (22:59 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 19 Jan 2007 22:59:32 +0000 (22:59 +0000)
type `long long int', not `long int'.
(wcstoq): Likewise.

ChangeLog
wcsmbs/wchar.h

index 51d5312..51b52b1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2007-01-18  Anton Nikishaev  <anton.nik@gmail.com>
+
+       * wcsmbs/wchar.h (wcstoll): Fix comment, function returns value of
+       type `long long int', not `long int'.
+       (wcstoq): Likewise.
+
 2007-01-18  Ulrich Drepper  <drepper@redhat.com>
 
        * scripts/gen-as-const.awk: Add cast to long to avoid int promotion
index f54abfa..3c5a8cb 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1995-2004,2005,2006 Free Software Foundation, Inc.
+/* Copyright (C) 1995-2004,2005,2006,2007 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -414,7 +414,7 @@ extern unsigned long int wcstoul (__const wchar_t *__restrict __nptr,
      __THROW;
 
 #if defined __USE_ISOC99 || (defined __GNUC__ && defined __USE_GNU)
-/* Convert initial portion of wide string NPTR to `long int'
+/* Convert initial portion of wide string NPTR to `long long int'
    representation.  */
 __extension__
 extern long long int wcstoll (__const wchar_t *__restrict __nptr,
@@ -431,7 +431,7 @@ extern unsigned long long int wcstoull (__const wchar_t *__restrict __nptr,
 __END_NAMESPACE_C99
 
 #if defined __GNUC__ && defined __USE_GNU
-/* Convert initial portion of wide string NPTR to `long int'
+/* Convert initial portion of wide string NPTR to `long long int'
    representation.  */
 __extension__
 extern long long int wcstoq (__const wchar_t *__restrict __nptr,