1
0
Fork 0
mirror of https://github.com/tailix/libclayer.git synced 2024-11-13 11:04:17 -05:00

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

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