Skip to content

Commit

Permalink
patches: Update types
Browse files Browse the repository at this point in the history
  • Loading branch information
lhmouse committed Oct 31, 2024
1 parent 37cc158 commit 41524f7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions patches/mingw-w64-10.0.patch
Original file line number Diff line number Diff line change
Expand Up @@ -234,21 +234,21 @@ index f39731ad7..ca6abd422 100644
+ }
+
+int
+__cxa_at_quick_exit(__MCF_cxa_dtor_union dtor, void* this, void* dso)
+__cxa_at_quick_exit(dtor_fn dtor, void* this, void* dso)
+ {
+ (void) dso;
+ return __MCF_cxa_at_quick_exit(dtor, this, &__dso_handle);
+ }
+
+int
+__cxa_atexit(__MCF_cxa_dtor_union dtor, void* this, void* dso)
+__cxa_atexit(dtor_fn dtor, void* this, void* dso)
+ {
+ (void) dso;
+ return __MCF_cxa_atexit(dtor, this, &__dso_handle);
+ }
+
+int
+__cxa_thread_atexit(__MCF_cxa_dtor_union dtor, void* this, void* dso)
+__cxa_thread_atexit(dtor_fn dtor, void* this, void* dso)
+ {
+ (void) dso;
+ return __MCF_cxa_thread_atexit(dtor, this, &__dso_handle);
Expand Down

0 comments on commit 41524f7

Please sign in to comment.