File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ extern long int __librt_telldir_r(struct _reent *r,DIR *dirp);
3232extern void __librt_rewinddir_r (struct _reent * r ,DIR * dirp );
3333extern void __librt_seekdir_r (struct _reent * r ,DIR * dirp ,long int loc );
3434extern int __librt_rmdir_r (struct _reent * r ,const char * dirname );
35+ extern int __librt_unlink_r (struct _reent * r ,const char * path );
3536
3637extern int __librt_usleep_r (struct _reent * r ,useconds_t usec );
3738extern unsigned int __librt_sleep_r (struct _reent * r ,unsigned int seconds );
@@ -76,6 +77,7 @@ static void __syscalls_init(void)
7677 __syscalls .rewinddir_r = __librt_rewinddir_r ;
7778 __syscalls .seekdir_r = __librt_seekdir_r ;
7879 __syscalls .rmdir_r = __librt_rmdir_r ;
80+ __syscalls .unlink_r = __librt_unlink_r ;
7981
8082 __syscalls .sleep_r = __librt_sleep_r ;
8183 __syscalls .usleep_r = __librt_usleep_r ;
You can’t perform that action at this time.
0 commit comments