Skip to content

Commit b5714c8

Browse files
authored
Update dos_at.h
1 parent 43292e0 commit b5714c8

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

  • include/fast_io_hosted/filesystem

include/fast_io_hosted/filesystem/dos_at.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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.
1919
extern 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.
2022
extern int my_dos_symlink(char const *exists, char const *newname) noexcept __asm__("_symlink");
2123
extern int my_dos_chmod(char const *path, mode_t mode) noexcept __asm__("_chmod");
2224
extern int my_dos_utime(char const *file, utimbuf const *time) noexcept __asm__("_utime");

0 commit comments

Comments
 (0)