Files
sourcekit-lsp/Sources/CSKTestSupport/include/CSKTestSupport.h
Maxwell Elliott ee2ffdcf41 Add module map for CSKTestSupport
Create a module map for the CSKTestSupport module, exporting the header "CSKTestSupport.h". This allows for better modularization and encapsulation of the support functionalities.

Signed-off-by: Maxwell Elliott <maxwell@elliott.now>
2025-08-14 16:00:37 -04:00

11 lines
316 B
C

#ifndef CSKTestSupport_h
#define CSKTestSupport_h
#ifdef __linux__
// For testing, override __cxa_atexit to prevent registration of static
// destructors due to https://github.com/swiftlang/swift/issues/55112.
int __cxa_atexit(void (*f) (void *), void *arg, void *dso_handle);
#endif
#endif /* CSKTestSupport_h */