Skip to content

Commit

Permalink
Add some missing vfs functions
Browse files Browse the repository at this point in the history
  • Loading branch information
totalspectrum committed Dec 6, 2024
1 parent 8ad4ab4 commit 16c62d1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions include/libc.a
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
#define DIRENT struct dirent

/* filesys/fatfs/fatfs_vfs.c */
FILE *_sdmm_open(int pclk, int pss, int pdi, pint pdo) __fromfile_("filesys/fatfs/fatfs_vfs.c");
struct vfs *_vfs_open_fat_handle(FILE *fhandle) __fromfile("filesys/fatfs/fatfs_vfs.c");
struct vfs *_vfs_open_fat_file(const char *name) __fromfile("filesys/fatfs/fatfs_vfs.c");
struct vfs *_vfs_open_sdcard(void) __fromfile("filesys/fatfs/fatfs_vfs.c");
struct vfs *_vfs_open_sdcardx(int pclk, int pss, int pdi, int pdo) __fromfile("filesys/fatfs/fatfs_vfs.c");

Expand Down

0 comments on commit 16c62d1

Please sign in to comment.