Files
anm2ed/include/libxm_compat.h

11 lines
159 B
C

#pragma once
#ifdef _MSC_VER
#ifndef __attribute__
#define __attribute__(x)
#endif
#ifndef restrict
#define restrict __restrict
#endif
#endif