mirror of
https://github.com/tailix/libclayer.git
synced 2024-11-20 11:06:24 -05:00
Fix syntax
This commit is contained in:
parent
e0eedde308
commit
0fc5909fca
1 changed files with 2 additions and 4 deletions
|
@ -12,10 +12,8 @@ extern "C" {
|
|||
|
||||
int atoi(const char *str);
|
||||
|
||||
__attribute__((noreturn))
|
||||
void abort();
|
||||
__attribute__((noreturn))
|
||||
void exit(int status);
|
||||
void abort() __attribute__((noreturn));
|
||||
void exit(int status) __attribute__((noreturn));
|
||||
|
||||
void *calloc(size_t nmemb, size_t size);
|
||||
void free(void *ptr);
|
||||
|
|
Loading…
Reference in a new issue