mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Avoid noreturn macro conflict in <stdlib.h>.
This commit is contained in:
parent
2630c7cb4e
commit
6d86af8d60
1 changed files with 3 additions and 3 deletions
|
@ -61,7 +61,7 @@ typedef struct
|
||||||
@include(size_t.h)
|
@include(size_t.h)
|
||||||
@include(wchar_t.h)
|
@include(wchar_t.h)
|
||||||
|
|
||||||
void abort(void) __attribute__ ((noreturn));
|
void abort(void) __attribute__ ((__noreturn__));
|
||||||
int abs(int value);
|
int abs(int value);
|
||||||
int atexit(void (*function)(void));
|
int atexit(void (*function)(void));
|
||||||
int atoi(const char*);
|
int atoi(const char*);
|
||||||
|
@ -70,8 +70,8 @@ long long atoll(const char*);
|
||||||
void* bsearch(const void*, const void*, size_t, size_t, int (*)(const void*, const void*));
|
void* bsearch(const void*, const void*, size_t, size_t, int (*)(const void*, const void*));
|
||||||
void* calloc(size_t, size_t);
|
void* calloc(size_t, size_t);
|
||||||
div_t div(int, int);
|
div_t div(int, int);
|
||||||
void exit(int) __attribute__ ((noreturn));
|
void exit(int) __attribute__ ((__noreturn__));
|
||||||
void _Exit(int status) __attribute__ ((noreturn));
|
void _Exit(int status) __attribute__ ((__noreturn__));
|
||||||
void free(void*);
|
void free(void*);
|
||||||
long labs(long);
|
long labs(long);
|
||||||
ldiv_t ldiv(long, long);
|
ldiv_t ldiv(long, long);
|
||||||
|
|
Loading…
Add table
Reference in a new issue