Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add mach_error_string (and mach_error_t) (#3913)
`mach_error_string` is defined in `/usr/include/mach/mach_error.h` It is not referenced in the documentation Apple website. ``` char *mach_error_string( /* * Returns a string appropriate to the error argument given */ mach_error_t error_value ); ``` `mach_error_t` is defined in `/usr/include/mach/error.h` https://developer.apple.com/documentation/kernel/mach_error_t ``` typedef kern_return_t mach_error_t; ```
- Loading branch information