err.h 521 B

1234567891011121314151617181920212223
  1. #ifndef _ERR_H
  2. #include <misc/err.h>
  3. /* Prototypes for internal err.h functions. */
  4. void
  5. __vwarnx_internal (const char *format, __gnuc_va_list ap,
  6. unsigned int mode_flags);
  7. void
  8. __vwarn_internal (const char *format, __gnuc_va_list ap,
  9. unsigned int mode_flags);
  10. # ifndef _ISOMAC
  11. libc_hidden_ldbl_proto (warn)
  12. libc_hidden_ldbl_proto (warnx)
  13. libc_hidden_ldbl_proto (vwarn)
  14. libc_hidden_ldbl_proto (vwarnx)
  15. libc_hidden_ldbl_proto (verr)
  16. libc_hidden_ldbl_proto (verrx)
  17. # endif /* !_ISOMAC */
  18. #endif /* err.h */