Skip to content

Commit

Permalink
Merge pull request #1118 from ajcasado/master
Browse files Browse the repository at this point in the history
Links created for dosdir, doswrite and dosdel utils in filesystem image. Fix type mismatch compilation error on cu.c
  • Loading branch information
EtchedPixels authored Nov 28, 2024
2 parents 85262da + 092afe6 commit 09f1eff
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
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

0 comments on commit 09f1eff

Please sign in to comment.