#pragma once #ifndef __has_attribute #define __has_attribute(x) 0 #endif #if __has_attribute(musttail) #define MUSTTAIL __attribute__((musttail)) #else #define MUSTTAIL #endif