Fix syntax

This commit is contained in:
Alex Kotov 2022-12-25 14:42:59 +04:00
parent e0eedde308
commit 0fc5909fca
Signed by: kotovalexarian
GPG Key ID: 553C0EBBEB5D5F08
1 changed files with 2 additions and 4 deletions

View File

@ -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);