11 lines
159 B
C
11 lines
159 B
C
#pragma once
|
|
|
|
#ifdef _MSC_VER
|
|
#ifndef __attribute__
|
|
#define __attribute__(x)
|
|
#endif
|
|
#ifndef restrict
|
|
#define restrict __restrict
|
|
#endif
|
|
#endif
|