File tree Expand file tree Collapse file tree
include/fast_io_hosted/filesystem Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -17,6 +17,8 @@ extern int my_dos_rename(char const *oldname, char const *newname) noexcept __as
1717// Because of limitations of MS-DOS, this function doesn't really link two files together.
1818// However, it simulates a real link by copying the file at exists to new.
1919extern int my_dos_link (char const *exists, char const *newname) noexcept __asm__(" _link" );
20+ // The symlink of djgpp only generates a 510-byte file and does not exist as a soft link, so it
21+ // will be disabled later.
2022extern int my_dos_symlink (char const *exists, char const *newname) noexcept __asm__(" _symlink" );
2123extern int my_dos_chmod (char const *path, mode_t mode) noexcept __asm__(" _chmod" );
2224extern int my_dos_utime (char const *file, utimbuf const *time) noexcept __asm__(" _utime" );
You can’t perform that action at this time.
0 commit comments