Ignore:
Timestamp:
2018-09-29T14:39:54Z (6 years ago)
Author:
Jiří Zárevúcky <jiri.zarevucky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
99170e0c
Parents:
dc68f72
git-author:
Jiří Zárevúcky <jiri.zarevucky@…> (2018-09-29 14:11:34)
git-committer:
Jiří Zárevúcky <jiri.zarevucky@…> (2018-09-29 14:39:54)
Message:

Use compiler-provided freestanding headers

Standard-compliant C compiler must provide these, so there is no point
in us trying to guess or repeat the correct contents.
This includes <float.h>, <iso646.h>, <limits.h>, <stdalign.h>, <stdarg.h>,
<stdbool.h>, <stddef.h>, <stdint.h>, and <stdnoreturn.h>.

<stdint.h> and <limits.h> need more work.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/arch/riscv64/include/arch/asm.h

    rdc68f72 r10d65d70  
    3131
    3232#include <stddef.h>
     33#include <stdint.h>
    3334
    3435extern char htif_page[];
    3536extern char pt_page[];
    3637
    37 extern void jump_to_kernel(uintptr_t)
    38     __attribute__((noreturn));
     38extern _Noreturn void jump_to_kernel(uintptr_t);
    3939
    4040#endif
Note: See TracChangeset for help on using the changeset viewer.