diff options
author | Jakob Kaivo <jkk@ung.org> | 2024-06-05 15:07:06 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2024-06-05 15:07:06 -0400 |
commit | 1161633db54ce8fd1180649f52909390a2986213 (patch) | |
tree | 81eb6390d21e2ad435595f534664121b181a5bb5 /src/stdlib/at_quick_exit.c | |
parent | 66d9ce2cdab4e989e7b4fbab17ba7f4aa4a4af70 (diff) |
rename all per-header internal structs to __<header>_h
Diffstat (limited to 'src/stdlib/at_quick_exit.c')
-rw-r--r-- | src/stdlib/at_quick_exit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stdlib/at_quick_exit.c b/src/stdlib/at_quick_exit.c index 6a6db796..d23dfda8 100644 --- a/src/stdlib/at_quick_exit.c +++ b/src/stdlib/at_quick_exit.c @@ -8,7 +8,7 @@ int at_quick_exit(void (*func)(void)) { SIGNAL_SAFE(0); - struct atexit *ae = &(__stdlib.at_quick_exit); + struct atexit *ae = &(__stdlib_h.at_quick_exit); while (ae->nfns == sizeof(ae->fns) / sizeof(ae->fns[0])) { if (ae->next == NULL) { ae->next = calloc(1, sizeof(*ae->next)); |