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 errors raised by missing-prototypes #46

Merged
merged 1 commit into from
May 6, 2024

Commits on May 5, 2024

  1. Fix errors raised by missing-prototypes

    The recent upstream commit (0fcb708) in the Linux kernel globally
    enforces function prototype checks. This means that it's crucial
    for each function to have a declaration to validate that both the
    caller and the callee expect the same argument types. Failure to
    comply with this requirement may result in real bugs due to
    mismatched prototypes. Therefore, in this commit, we need to add
    function prototypes to the header files or declare functions with
    static to ensure compatibility with these changes.
    HotMercury committed May 5, 2024
    Configuration menu
    Copy the full SHA
    c2f3aa0 View commit details
    Browse the repository at this point in the history