File tree Expand file tree Collapse file tree 2 files changed +21
-0
lines changed
src/unix/bsd/netbsdlike/netbsd Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -1538,3 +1538,6 @@ basename
1538
1538
XATTR_CREATE
1539
1539
XATTR_REPLACE
1540
1540
EXTATTR_NAMESPACE_EMPTY
1541
+ extattr_list_fd
1542
+ extattr_list_file
1543
+ extattr_list_link
Original file line number Diff line number Diff line change @@ -2459,6 +2459,24 @@ extern "C" {
2459
2459
envp : * const * const :: c_char ,
2460
2460
) -> :: c_int ;
2461
2461
2462
+ pub fn extattr_list_fd (
2463
+ fd : :: c_int ,
2464
+ attrnamespace : :: c_int ,
2465
+ data : * mut :: c_void ,
2466
+ nbytes : :: size_t ,
2467
+ ) -> :: ssize_t ;
2468
+ pub fn extattr_list_file (
2469
+ path : * const :: c_char ,
2470
+ attrnamespace : :: c_int ,
2471
+ data : * mut :: c_void ,
2472
+ nbytes : :: size_t ,
2473
+ ) -> :: ssize_t ;
2474
+ pub fn extattr_list_link (
2475
+ path : * const :: c_char ,
2476
+ attrnamespace : :: c_int ,
2477
+ data : * mut :: c_void ,
2478
+ nbytes : :: size_t ,
2479
+ ) -> :: ssize_t ;
2462
2480
pub fn extattr_delete_fd (
2463
2481
fd : :: c_int ,
2464
2482
attrnamespace : :: c_int ,
You can’t perform that action at this time.
0 commit comments