Skip to content
Snippets Groups Projects
Forked from redox-os / relibc
200345 commits behind, 74546 commits ahead of the upstream repository.
  • Robin Randhawa's avatar
    23de2ca7
    Remove redundant wchar_t and win_t definitions · 23de2ca7
    Robin Randhawa authored
    Typically with libc implementations, wchar_t and co are either defined
    entirely by the libc or, under libc's arrangement, by headers supplied
    by the compiler.
    
    Things like dlmalloc in relibc need these definitions from relibc itself
    and that's already already furnished by relibc's stddef.h.
    
    These additional definitions here are redundant and collide with
    compiler headers - for example: onig_sys (something that uutils depends
    on) breaks. Instead, this patch makes the compiler headers define
    things appropriately.
    23de2ca7
    History
    Remove redundant wchar_t and win_t definitions
    Robin Randhawa authored
    Typically with libc implementations, wchar_t and co are either defined
    entirely by the libc or, under libc's arrangement, by headers supplied
    by the compiler.
    
    Things like dlmalloc in relibc need these definitions from relibc itself
    and that's already already furnished by relibc's stddef.h.
    
    These additional definitions here are redundant and collide with
    compiler headers - for example: onig_sys (something that uutils depends
    on) breaks. Instead, this patch makes the compiler headers define
    things appropriately.