mirror of
https://github.com/zeldaret/st
synced 2026-06-15 22:39:59 -04:00
add ci stuff and update clang-format rules
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
#pragma once
|
||||
|
||||
typedef struct DestructorChain {
|
||||
/* 0 */ struct DestructorChain *next;
|
||||
/* 4 */ void *destructor;
|
||||
/* 8 */ void *object;
|
||||
/* 0 */ struct DestructorChain* next;
|
||||
/* 4 */ void* destructor;
|
||||
/* 8 */ void* object;
|
||||
/* c */
|
||||
} DestructorChain;
|
||||
|
||||
void *__register_global_object(void *object, void *destructor, DestructorChain *link);
|
||||
void* __register_global_object(void* object, void* destructor, DestructorChain* link);
|
||||
|
||||
Reference in New Issue
Block a user