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
511511XDP_PKT_CONTD
512512XENFS_SUPER_MAGIC
513513XFS_SUPER_MAGIC
514+ _CS_GNU_LIBC_VERSION
515+ _CS_GNU_LIBPTHREAD_VERSION
516+ _CS_PATH
514517_SC_2_C_VERSION
515518_SC_BASE
516519_SC_CHARCLASS_NAME_MAX
@@ -611,6 +614,7 @@ aio_write
611614aiocb
612615backtrace
613616clock_adjtime
617+ confstr
614618copy_file_range
615619ctermid
616620dlinfo
Original file line number Diff line number Diff line change @@ -826,6 +826,9 @@ pub const TMP_MAX: ::c_uint = 238328;
826826pub const FOPEN_MAX : :: c_uint = 16 ;
827827pub const FILENAME_MAX : :: c_uint = 4096 ;
828828pub const POSIX_MADV_DONTNEED : :: c_int = 4 ;
829+ pub const _CS_GNU_LIBC_VERSION: :: c_int = 2 ;
830+ pub const _CS_GNU_LIBPTHREAD_VERSION: :: c_int = 3 ;
831+ pub const _CS_PATH: :: c_int = 0 ;
829832pub const _SC_EQUIV_CLASS_MAX: :: c_int = 41 ;
830833pub const _SC_CHARCLASS_NAME_MAX: :: c_int = 45 ;
831834pub const _SC_PII: :: c_int = 53 ;
@@ -1485,6 +1488,7 @@ extern "C" {
14851488 ) -> :: size_t ;
14861489 pub fn strptime ( s : * const :: c_char , format : * const :: c_char , tm : * mut :: tm ) -> * mut :: c_char ;
14871490
1491+ pub fn confstr ( name : :: c_int , buf : * mut :: c_char , len : :: size_t ) -> :: size_t ;
14881492 pub fn dirname ( path : * mut :: c_char ) -> * mut :: c_char ;
14891493 /// POSIX version of `basename(3)`, defined in `libgen.h`.
14901494 #[ link_name = "__xpg_basename" ]
You can’t perform that action at this time.
0 commit comments