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 @@ -1232,6 +1232,7 @@ regexec
1232
1232
regfree
1233
1233
regmatch_t
1234
1234
regoff_t
1235
+ secure_path
1235
1236
seekdir
1236
1237
sem
1237
1238
sem_close
@@ -1269,6 +1270,8 @@ siginfo_t
1269
1270
sigtimedwait
1270
1271
sigwait
1271
1272
sigwaitinfo
1273
+ snprintb
1274
+ snprintb_m
1272
1275
sockaddr_dl
1273
1276
sockcred
1274
1277
srand
Original file line number Diff line number Diff line change @@ -2220,6 +2220,20 @@ extern "C" {
2220
2220
pub fn esetfunc (
2221
2221
cb : :: Option < unsafe extern "C" fn ( :: c_int , * const :: c_char , ...) > ,
2222
2222
) -> :: Option < unsafe extern "C" fn ( :: c_int , * const :: c_char , ...) > ;
2223
+ pub fn secure_path ( path : * const :: c_char ) -> :: c_int ;
2224
+ pub fn snprintb (
2225
+ buf : * mut :: c_char ,
2226
+ buflen : :: size_t ,
2227
+ fmt : * const :: c_char ,
2228
+ val : u64 ,
2229
+ ) -> :: c_int ;
2230
+ pub fn snprintb_m (
2231
+ buf : * mut :: c_char ,
2232
+ buflen : :: size_t ,
2233
+ fmt : * const :: c_char ,
2234
+ val : u64 ,
2235
+ max : :: size_t ,
2236
+ ) -> :: c_int ;
2223
2237
}
2224
2238
2225
2239
cfg_if ! {
You can’t perform that action at this time.
0 commit comments