You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
625 B

  1. --- a/argz.h
  2. +++ b/argz.h
  3. @@ -39,6 +39,7 @@
  4. #define _ARGZ_H 1
  5. #include <features.h>
  6. +#include <sys/cdefs.h>
  7. #define __need_error_t
  8. #include <errno.h>
  9. @@ -76,9 +77,9 @@ extern error_t argz_create_sep (__const char *__restrict __string,
  10. /* Returns the number of strings in ARGZ. */
  11. extern size_t __argz_count (__const char *__argz, size_t __len)
  12. - __THROW __attribute_pure__;
  13. + __THROW;
  14. extern size_t argz_count (__const char *__argz, size_t __len)
  15. - __THROW __attribute_pure__;
  16. + __THROW;
  17. /* Puts pointers to each string in ARGZ into ARGV, which must be large enough
  18. to hold them all. */