File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed
src/unix/bsd/netbsdlike/netbsd Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -1224,6 +1224,7 @@ regexec
1224
1224
regfree
1225
1225
regmatch_t
1226
1226
regoff_t
1227
+ secure_path
1227
1228
seekdir
1228
1229
sem
1229
1230
sem_close
@@ -1261,6 +1262,8 @@ siginfo_t
1261
1262
sigtimedwait
1262
1263
sigwait
1263
1264
sigwaitinfo
1265
+ snprintb
1266
+ snprintb_m
1264
1267
sockaddr_dl
1265
1268
sockcred
1266
1269
srand
Original file line number Diff line number Diff line change @@ -2210,6 +2210,20 @@ extern "C" {
2210
2210
pub fn esetfunc (
2211
2211
cb : :: Option < unsafe extern "C" fn ( :: c_int , * const :: c_char , ...) > ,
2212
2212
) -> :: Option < unsafe extern "C" fn ( :: c_int , * const :: c_char , ...) > ;
2213
+ pub fn secure_path ( path : * const :: c_char ) -> :: c_int ;
2214
+ pub fn snprintb (
2215
+ buf : * mut :: c_char ,
2216
+ buflen : :: size_t ,
2217
+ fmt : * const :: c_char ,
2218
+ val : u64 ,
2219
+ ) -> :: c_int ;
2220
+ pub fn snprintb_m (
2221
+ buf : * mut :: c_char ,
2222
+ buflen : :: size_t ,
2223
+ fmt : * const :: c_char ,
2224
+ val : u64 ,
2225
+ max : :: size_t ,
2226
+ ) -> :: c_int ;
2213
2227
}
2214
2228
2215
2229
cfg_if ! {
You can’t perform that action at this time.
0 commit comments