Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Links created for dosdir, doswrite and dosdel utils in filesystem image. Fix type mismatch compilation error on cu.c #1118

Merged
merged 5 commits into from
Nov 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Applications/util/cu.c
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ int main(int argc, char *argv[])
uint_fast8_t is_esc = 0;
uint_fast8_t is_nl = 1;
uint_fast8_t w;
atexit(restore);
atexit((void *)&restore);
if (escchar <= 0x1A)
{
escStr[0] = '^';
Expand Down
3 changes: 3 additions & 0 deletions Applications/util/fuzix-util.pkg
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@ f 0755 /bin/cut cut
f 0755 /bin/decomp16 decomp16
f 0755 /bin/dirname dirname
f 0755 /bin/dosread dosread
l /bin/dosread /bin/dosdir
l /bin/dosread /bin/doswrite
l /bin/dosread /bin/dosdel
f 0755 /bin/env env
f 0755 /bin/factor factor
f 0755 /bin/false false
Expand Down