(alphasort, versionsort): Move __attribute_pure__ out of the __REDIRECT macro.

This commit is contained in:
Ulrich Drepper 2000-08-23 18:03:00 +00:00
parent df9650f1b0
commit 2c1394a86d

View File

@ -258,8 +258,8 @@ extern int alphasort (__const void *__e1, __const void *__e2)
# ifdef __REDIRECT # ifdef __REDIRECT
extern int __REDIRECT (alphasort, extern int __REDIRECT (alphasort,
(__const void *__e1, __const void *__e2) (__const void *__e1, __const void *__e2)
__THROW __attribute_pure__, __THROW,
alphasort64); alphasort64) __attribute_pure__;
# else # else
# define alphasort alphasort64 # define alphasort alphasort64
# endif # endif
@ -279,8 +279,8 @@ extern int versionsort (__const void *__e1, __const void *__e2)
# ifdef __REDIRECT # ifdef __REDIRECT
extern int __REDIRECT (versionsort, extern int __REDIRECT (versionsort,
(__const void *__e1, __const void *__e2) (__const void *__e1, __const void *__e2)
__THROW __attribute_pure__, __THROW,
versionsort64); versionsort64) __attribute_pure__;
# else # else
# define versionsort versionsort64 # define versionsort versionsort64
# endif # endif