@@ -15,6 +15,10 @@ struct vfs *_vfs_open_sdcardx(int pclk, int pss, int pdi, int pdo) __fromfile("f
15
15
/* filesys/fs9p/fs9p_vfs.c */
16
16
struct vfs *_vfs_open_host(void) __fromfile("filesys/fs9p/fs9p_vfs.c");
17
17
18
+ /* filesys/parallax/parallaxfs_vfs.c */
19
+ struct vfs *_vfs_open_parallaxfs(void) __fromfile("filesys/parallax/parallaxfs_vfs.c");
20
+ int _mkfs_parallaxfs(void) __fromfile("filesys/parallax/parallaxfs_vfs.c");
21
+
18
22
/* libc/misc/ctype.c */
19
23
int isupper(int c) __fromfile("libc/misc/ctype.c");
20
24
int islower(int c) __fromfile("libc/misc/ctype.c");
@@ -71,6 +75,7 @@ int fclose(_FILE *f) __fromfile("libc/stdio/fopen.c");
71
75
/* libc/stdio/fseek.c */
72
76
int fseek(_FILE *f, long offset, int whence) __fromfile("libc/stdio/fseek.c");
73
77
long ftell(_FILE *f) __fromfile("libc/stdio/fseek.c");
78
+ void rewind(_FILE *f) __fromfile("libc/stdio/fseek.c");
74
79
75
80
/* libc/stdio/fwrite.c */
76
81
size_t fwrite(const void *ptr, size_t size, size_t n, _FILE *f) __fromfile("libc/stdio/fwrite.c");
@@ -199,6 +204,10 @@ time_t time(time_t *tp) __fromfile("libc/time/time.c");
199
204
/* libc/time/usleep.c */
200
205
int usleep(unsigned int n) __fromfile("libc/time/usleep.c");
201
206
207
+ /* libc/unix/exec.c */
208
+ int _execve(const char *path, char **args, char **env) __fromfile("libc/unix/exec.c");
209
+ int _execl(const char *path, const char *arg0, ...) __fromfile("libc/unix/execl.c");
210
+
202
211
/* libc/unix/_mount.c */
203
212
int chdir(const char *path) __fromfile("libc/unix/mount.c");
204
213
char *getcwd(char *buf, size_t siz) __fromfile("libc/unix/mount.c");
0 commit comments