@@ -55,7 +55,7 @@ pub const UTIME_OMIT: Nsecs = backend::c::UTIME_OMIT as Nsecs;
5555/// - [POSIX]
5656/// - [Linux]
5757///
58- /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9699919799 /functions/openat.html
58+ /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9799919799 /functions/openat.html
5959/// [Linux]: https://man7.org/linux/man-pages/man2/openat.2.html
6060#[ inline]
6161pub fn openat < P : path:: Arg , Fd : AsFd > (
@@ -77,7 +77,7 @@ pub fn openat<P: path::Arg, Fd: AsFd>(
7777/// - [POSIX]
7878/// - [Linux]
7979///
80- /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9699919799 /functions/readlinkat.html
80+ /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9799919799 /functions/readlinkat.html
8181/// [Linux]: https://man7.org/linux/man-pages/man2/readlinkat.2.html
8282#[ cfg( feature = "alloc" ) ]
8383#[ inline]
@@ -120,8 +120,8 @@ fn _readlinkat(dirfd: BorrowedFd<'_>, path: &CStr, mut buffer: Vec<u8>) -> io::R
120120 //
121121 // Thus, there will be no NUL bytes in the string.
122122 //
123- // [POSIX definition 3.271: Pathname]: https://pubs.opengroup.org/onlinepubs/9699919799 /basedefs/V1_chap03.html#tag_03_271
124- // [POSIX definition 3.375: String]: https://pubs.opengroup.org/onlinepubs/9699919799 /basedefs/V1_chap03.html#tag_03_375
123+ // [POSIX definition 3.271: Pathname]: https://pubs.opengroup.org/onlinepubs/9799919799 /basedefs/V1_chap03.html#tag_03_271
124+ // [POSIX definition 3.375: String]: https://pubs.opengroup.org/onlinepubs/9799919799 /basedefs/V1_chap03.html#tag_03_375
125125 unsafe {
126126 return Ok ( CString :: from_vec_unchecked ( buffer) ) ;
127127 }
@@ -148,7 +148,7 @@ fn _readlinkat(dirfd: BorrowedFd<'_>, path: &CStr, mut buffer: Vec<u8>) -> io::R
148148/// - [POSIX]
149149/// - [Linux]
150150///
151- /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9699919799 /functions/readlinkat.html
151+ /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9799919799 /functions/readlinkat.html
152152/// [Linux]: https://man7.org/linux/man-pages/man2/readlinkat.2.html
153153#[ inline]
154154pub fn readlinkat_raw < P : path:: Arg , Fd : AsFd > (
@@ -180,7 +180,7 @@ fn _readlinkat_raw<'a>(
180180/// - [POSIX]
181181/// - [Linux]
182182///
183- /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9699919799 /functions/mkdirat.html
183+ /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9799919799 /functions/mkdirat.html
184184/// [Linux]: https://man7.org/linux/man-pages/man2/mkdirat.2.html
185185#[ inline]
186186pub fn mkdirat < P : path:: Arg , Fd : AsFd > ( dirfd : Fd , path : P , mode : Mode ) -> io:: Result < ( ) > {
@@ -194,7 +194,7 @@ pub fn mkdirat<P: path::Arg, Fd: AsFd>(dirfd: Fd, path: P, mode: Mode) -> io::Re
194194/// - [POSIX]
195195/// - [Linux]
196196///
197- /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9699919799 /functions/linkat.html
197+ /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9799919799 /functions/linkat.html
198198/// [Linux]: https://man7.org/linux/man-pages/man2/linkat.2.html
199199#[ cfg( not( target_os = "espidf" ) ) ]
200200#[ inline]
@@ -228,7 +228,7 @@ pub fn linkat<P: path::Arg, Q: path::Arg, PFd: AsFd, QFd: AsFd>(
228228/// - [Linux]
229229///
230230/// [`REMOVEDIR`]: AtFlags::REMOVEDIR
231- /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9699919799 /functions/unlinkat.html
231+ /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9799919799 /functions/unlinkat.html
232232/// [Linux]: https://man7.org/linux/man-pages/man2/unlinkat.2.html
233233#[ cfg( not( target_os = "espidf" ) ) ]
234234#[ inline]
@@ -243,7 +243,7 @@ pub fn unlinkat<P: path::Arg, Fd: AsFd>(dirfd: Fd, path: P, flags: AtFlags) -> i
243243/// - [POSIX]
244244/// - [Linux]
245245///
246- /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9699919799 /functions/renameat.html
246+ /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9799919799 /functions/renameat.html
247247/// [Linux]: https://man7.org/linux/man-pages/man2/renameat.2.html
248248#[ inline]
249249pub fn renameat < P : path:: Arg , Q : path:: Arg , PFd : AsFd , QFd : AsFd > (
@@ -300,7 +300,7 @@ pub fn renameat_with<P: path::Arg, Q: path::Arg, PFd: AsFd, QFd: AsFd>(
300300/// - [POSIX]
301301/// - [Linux]
302302///
303- /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9699919799 /functions/symlinkat.html
303+ /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9799919799 /functions/symlinkat.html
304304/// [Linux]: https://man7.org/linux/man-pages/man2/symlinkat.2.html
305305#[ inline]
306306pub fn symlinkat < P : path:: Arg , Q : path:: Arg , Fd : AsFd > (
@@ -324,7 +324,7 @@ pub fn symlinkat<P: path::Arg, Q: path::Arg, Fd: AsFd>(
324324/// - [POSIX]
325325/// - [Linux]
326326///
327- /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9699919799 /functions/fstatat.html
327+ /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9799919799 /functions/fstatat.html
328328/// [Linux]: https://man7.org/linux/man-pages/man2/fstatat.2.html
329329/// [`Mode::from_raw_mode`]: crate::fs::Mode::from_raw_mode
330330/// [`FileType::from_raw_mode`]: crate::fs::FileType::from_raw_mode
@@ -349,7 +349,7 @@ pub fn statat<P: path::Arg, Fd: AsFd>(dirfd: Fd, path: P, flags: AtFlags) -> io:
349349/// - [POSIX]
350350/// - [Linux]
351351///
352- /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9699919799 /functions/faccessat.html
352+ /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9799919799 /functions/faccessat.html
353353/// [Linux]: https://man7.org/linux/man-pages/man2/faccessat.2.html
354354#[ cfg( not( any( target_os = "espidf" , target_os = "vita" ) ) ) ]
355355#[ inline]
@@ -369,7 +369,7 @@ pub fn accessat<P: path::Arg, Fd: AsFd>(
369369/// - [POSIX]
370370/// - [Linux]
371371///
372- /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9699919799 /functions/utimensat.html
372+ /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9799919799 /functions/utimensat.html
373373/// [Linux]: https://man7.org/linux/man-pages/man2/utimensat.2.html
374374#[ cfg( not( any( target_os = "espidf" , target_os = "vita" ) ) ) ]
375375#[ inline]
@@ -392,7 +392,7 @@ pub fn utimensat<P: path::Arg, Fd: AsFd>(
392392/// - [POSIX]
393393/// - [Linux]
394394///
395- /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9699919799 /functions/fchmodat.html
395+ /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9799919799 /functions/fchmodat.html
396396/// [Linux]: https://man7.org/linux/man-pages/man2/fchmodat.2.html
397397#[ cfg( not( any( target_os = "espidf" , target_os = "wasi" ) ) ) ]
398398#[ inline]
@@ -431,7 +431,7 @@ pub fn fclonefileat<Fd: AsFd, DstFd: AsFd, P: path::Arg>(
431431/// - [POSIX]
432432/// - [Linux]
433433///
434- /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9699919799 /functions/mknodat.html
434+ /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9799919799 /functions/mknodat.html
435435/// [Linux]: https://man7.org/linux/man-pages/man2/mknodat.2.html
436436#[ cfg( not( any( apple, target_os = "espidf" , target_os = "vita" , target_os = "wasi" ) ) ) ]
437437#[ inline]
@@ -454,7 +454,7 @@ pub fn mknodat<P: path::Arg, Fd: AsFd>(
454454/// - [POSIX]
455455/// - [Linux]
456456///
457- /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9699919799 /functions/fchownat.html
457+ /// [POSIX]: https://pubs.opengroup.org/onlinepubs/9799919799 /functions/fchownat.html
458458/// [Linux]: https://man7.org/linux/man-pages/man2/fchownat.2.html
459459#[ cfg( not( any( target_os = "espidf" , target_os = "wasi" ) ) ) ]
460460#[ inline]
0 commit comments