Files
weaseljson/src/musttail.h
2025-05-17 12:24:07 -04:00

12 lines
178 B
C

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