EHS/include/ehs/crt/CRT_LNX.h
2024-02-13 22:56:53 -08:00

8 lines
123 B
C

#pragma once
extern "C"
{
void construct() __attribute__((constructor));
void destruct() __attribute__((destructor));
}