mirror of
https://github.com/zeldaret/st
synced 2026-07-08 14:26:24 -04:00
sync .clang-format with ph
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