]> sourceware.org Git - glibc.git/commitdiff
Replace const in attribute list with __const__.
authorUlrich Drepper <drepper@redhat.com>
Tue, 17 Apr 2001 04:19:13 +0000 (04:19 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 17 Apr 2001 04:19:13 +0000 (04:19 +0000)
string/string.h

index 65769e9f120d8ddc238c8c0b628205c464393bdc..08ebdfc681df1d2c7cafa37bcfd4e5ab87c0054e 100644 (file)
@@ -256,15 +256,15 @@ extern char *rindex (__const char *__s, int __c) __THROW __attribute_pure__;
 
 /* Return the position of the first bit set in I, or 0 if none are set.
    The least-significant bit is position 1, the most-significant 32.  */
-extern int ffs (int __i) __THROW __attribute__ ((const));
+extern int ffs (int __i) __THROW __attribute__ ((__const__));
 
 /* The following two functions are non-standard but necessary for non-32 bit
    platforms.  */
 # ifdef        __USE_GNU
-extern int ffsl (long int __l) __THROW __attribute__ ((const));
+extern int ffsl (long int __l) __THROW __attribute__ ((__const__));
 #  ifdef __GNUC__
 __extension__ extern int ffsll (long long int __ll)
-     __THROW __attribute__ ((const));
+     __THROW __attribute__ ((__const__));
 #  endif
 # endif
 
This page took 0.041259 seconds and 5 git commands to generate.