Fix syntax

This commit is contained in:
Alex Kotov 2022-12-25 14:39:30 +04:00
parent 994b47a249
commit e0eedde308
Signed by: kotovalexarian
GPG Key ID: 553C0EBBEB5D5F08
1 changed files with 2 additions and 2 deletions

View File

@ -8,8 +8,8 @@ extern "C" {
#include <stddef.h>
struct Libclayer {
void (*abort)() __attribute__((noreturn));
void (*exit)(int status) __attribute__((noreturn));
__attribute__((noreturn)) void (*abort)();
__attribute__((noreturn)) void (*exit)(int status);
void *(*calloc)(size_t nmemb, size_t size);
void (*free)(void *ptr);