home *** CD-ROM | disk | FTP | other *** search
- #import "mach/mach.h"
-
- /* user defined (imported) */
- __private_extern__ char *progname;
-
- /* defined in errors.c */
- /* number of detected calls to error() */
- __private_extern__ unsigned long errors;
-
- __private_extern__ void warning(
- const char *format, ...) __attribute__ ((format (printf, 1, 2)));
- __private_extern__ void error(
- const char *format, ...) __attribute__ ((format (printf, 1, 2)));
- __private_extern__ void error_with_arch(
- const char *arch_name,
- const char *format, ...) __attribute__ ((format (printf, 2, 3)));
- __private_extern__ void system_error(
- const char *format, ...) __attribute__ ((format (printf, 1, 2)));
- __private_extern__ void fatal(
- const char *format, ...) __attribute__ ((format (printf, 1, 2)));
- __private_extern__ void system_fatal(
- const char *format, ...) __attribute__ ((format (printf, 1, 2)));
- __private_extern__ void my_mach_error(
- kern_return_t r,
- char *format, ...) __attribute__ ((format (printf, 2, 3)));
- __private_extern__ void mach_fatal(
- kern_return_t r,
- char *format, ...) __attribute__ ((format (printf, 2, 3)));
-