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

Update XED_NORETURN to support modern C standards #333

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from

Commits on Sep 14, 2024

  1. Update XED_NORETURN to support modern C standards

    The `XED_NORETURN` macro is incompatible with software using C11. This
    commit updates the macro logic to use `[[noreturn]]` (C23) or
    `_Noreturn` (C11) when the given standard is supported. The original
    `__attribute__` syntax is kept, it now uses `__noreturn__` to avoid
    conflicts if/when `noreturn` is a macro.
    
    Signed-off-by: Jonathon Anderson <anderson.jonathonm@gmail.com>
    blue42u committed Sep 14, 2024
    Configuration menu
    Copy the full SHA
    b87dfac View commit details
    Browse the repository at this point in the history