Commit d8ff07b
authored
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;
```1 parent 1566923 commit d8ff07b
2 files changed
+5
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1913 | 1913 | | |
1914 | 1914 | | |
1915 | 1915 | | |
| 1916 | + | |
| 1917 | + | |
1916 | 1918 | | |
1917 | 1919 | | |
1918 | 1920 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
58 | 58 | | |
59 | 59 | | |
60 | 60 | | |
| 61 | + | |
61 | 62 | | |
62 | 63 | | |
63 | 64 | | |
| |||
6209 | 6210 | | |
6210 | 6211 | | |
6211 | 6212 | | |
| 6213 | + | |
| 6214 | + | |
6212 | 6215 | | |
6213 | 6216 | | |
6214 | 6217 | | |
| |||
0 commit comments