/* * mlcrt.h * * Copyright (C) 2019 Aleksandar Andrejevic * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ #ifndef _MLCRT_H_ #define _MLCRT_H_ #ifndef __CRT_PUBLIC_PREFIX #define __CRT_PUBLIC_PREFIX #endif #ifndef __CRT_PRIVATE_PREFIX #define __CRT_PRIVATE_PREFIX __crt_ #endif #define ___CRT_PASTE(a, b) a ## b #define __CRT_PASTE(a, b) ___CRT_PASTE(a, b) #define __CRT_PUBLIC(x) __CRT_PASTE(__CRT_PUBLIC_PREFIX, x) #define __CRT_PRIVATE(x) __CRT_PASTE(__CRT_PRIVATE_PREFIX, x) #endif