1
0
Fork 0
mirror of https://github.com/tailix/libclayer.git synced 2024-11-20 11:06:24 -05:00

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

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