os_defines.h: Prefix __strtoll and __strtoull declarations with __extension__.
authorJeff Law <law@redhat.com>
Thu, 3 Jan 2002 18:03:15 +0000 (11:03 -0700)
committerJeff Law <law@gcc.gnu.org>
Thu, 3 Jan 2002 18:03:15 +0000 (11:03 -0700)
        * config/os/hpux/bits/os_defines.h: Prefix __strtoll and
        __strtoull declarations with __extension__.

From-SVN: r48516

libstdc++-v3/ChangeLog
libstdc++-v3/config/os/hpux/bits/os_defines.h

index 24d1889a39ba6829566ab4dd9b46a5d69d7fe852..f1f970d4740dd677e965c4e97f8eef7ab30975f4 100644 (file)
@@ -1,3 +1,8 @@
+Thu Jan  3 11:05:41 2002  Jeffrey A Law  (law@redhat.com)
+
+        * config/os/hpux/bits/os_defines.h: Prefix __strtoll and
+        __strtoull declarations with __extension__.
+
 2002-01-03  David Billinghurst <David.Billinghurst@riotinto.com>
 
        * testsuite/lib/prune.exp: Correct regular expression for
index a548125a7e604f54821ee1628f9dc94899d3d4b7..efc5e7abf4dcad1b11d388bcd238f9406d5fe035 100644 (file)
@@ -60,9 +60,9 @@
    We also force _GLIBCPP_USE_LONG_LONG here so that we don't have
    to bastardize configure to deal with this sillyness.  */
 namespace std {
-  extern "C" long long strtoll (const char *, char **, int)
+  __extension__ extern "C" long long strtoll (const char *, char **, int)
     __asm  ("__strtoll");
-  extern "C" unsigned long long strtoull (const char *, char **, int)
+  __extension__ extern "C" unsigned long long strtoull (const char *, char **, int)
     __asm  ("__strtoull");
 }
 #define _GLIBCPP_USE_LONG_LONG 1