File tree 2 files changed +9
-0
lines changed 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -1686,8 +1686,11 @@ _CS_PATH
1686
1686
_IOFBF
1687
1687
_IOLBF
1688
1688
_IONBF
1689
+ _NSGetArgc
1690
+ _NSGetArgv
1689
1691
_NSGetEnviron
1690
1692
_NSGetExecutablePath
1693
+ _NSGetProgname
1691
1694
_POSIX_VDISABLE
1692
1695
_PTHREAD_COND_SIG_init
1693
1696
_PTHREAD_MUTEX_SIG_init
Original file line number Diff line number Diff line change @@ -6322,8 +6322,14 @@ extern "C" {
6322
6322
pub fn CCRandomGenerateBytes ( bytes : * mut :: c_void , size : :: size_t ) -> :: CCRNGStatus ;
6323
6323
pub fn getentropy ( buf : * mut :: c_void , buflen : :: size_t ) -> :: c_int ;
6324
6324
6325
+ // dyld.h
6325
6326
pub fn _NSGetExecutablePath ( buf : * mut :: c_char , bufsize : * mut u32 ) -> :: c_int ;
6327
+
6328
+ // crt_externs.h
6329
+ pub fn _NSGetArgv ( ) -> * mut * mut * mut :: c_char ;
6330
+ pub fn _NSGetArgc ( ) -> * mut :: c_int ;
6326
6331
pub fn _NSGetEnviron ( ) -> * mut * mut * mut :: c_char ;
6332
+ pub fn _NSGetProgname ( ) -> * mut * mut :: c_char ;
6327
6333
6328
6334
pub fn mach_vm_map (
6329
6335
target_task : :: vm_map_t ,
You can’t perform that action at this time.
0 commit comments