File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
src/unix/linux_like/linux/gnu Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -511,6 +511,9 @@ XSK_UNALIGNED_BUF_ADDR_MASK
511
511
XDP_PKT_CONTD
512
512
XENFS_SUPER_MAGIC
513
513
XFS_SUPER_MAGIC
514
+ _CS_GNU_LIBC_VERSION
515
+ _CS_GNU_LIBPTHREAD_VERSION
516
+ _CS_PATH
514
517
_SC_2_C_VERSION
515
518
_SC_BASE
516
519
_SC_CHARCLASS_NAME_MAX
@@ -611,6 +614,7 @@ aio_write
611
614
aiocb
612
615
backtrace
613
616
clock_adjtime
617
+ confstr
614
618
copy_file_range
615
619
ctermid
616
620
dlinfo
Original file line number Diff line number Diff line change @@ -835,6 +835,9 @@ pub const TMP_MAX: ::c_uint = 238328;
835
835
pub const FOPEN_MAX : :: c_uint = 16 ;
836
836
pub const FILENAME_MAX : :: c_uint = 4096 ;
837
837
pub const POSIX_MADV_DONTNEED : :: c_int = 4 ;
838
+ pub const _CS_GNU_LIBC_VERSION: :: c_int = 2 ;
839
+ pub const _CS_GNU_LIBPTHREAD_VERSION: :: c_int = 3 ;
840
+ pub const _CS_PATH: :: c_int = 0 ;
838
841
pub const _SC_EQUIV_CLASS_MAX: :: c_int = 41 ;
839
842
pub const _SC_CHARCLASS_NAME_MAX: :: c_int = 45 ;
840
843
pub const _SC_PII: :: c_int = 53 ;
@@ -1478,6 +1481,7 @@ extern "C" {
1478
1481
pub fn asctime_r ( tm : * const :: tm , buf : * mut :: c_char ) -> * mut :: c_char ;
1479
1482
pub fn ctime_r ( timep : * const time_t , buf : * mut :: c_char ) -> * mut :: c_char ;
1480
1483
1484
+ pub fn confstr ( name : :: c_int , buf : * mut :: c_char , len : :: size_t ) -> :: size_t ;
1481
1485
pub fn dirname ( path : * mut :: c_char ) -> * mut :: c_char ;
1482
1486
/// POSIX version of `basename(3)`, defined in `libgen.h`.
1483
1487
#[ link_name = "__xpg_basename" ]
You can’t perform that action at this time.
0 commit comments