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

Fix sync_file_range() with musl 1.2.4 #36

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on May 13, 2024

  1. Fix sync_file_range() with musl 1.2.4

    musl 1.2.4 has removed the transitional LFS off64_t type.
    sync_file_range is declared with off_t in musl, which is always 64
    bits.
    
    This assumes that the same is true of any other libc which doesn't
    provide off64_t.  If it's not, gcc will produce an error due to the
    conflicting types of sync_file_range(), so it will be caught and can
    be fixed.
    alyssais committed May 13, 2024
    Configuration menu
    Copy the full SHA
    59f04ad View commit details
    Browse the repository at this point in the history