mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-05-28 15:34:33 +00:00
19 lines
428 B
C++
19 lines
428 B
C++
#ifndef __FENNIX_KERNEL_STD_H__
|
|
#define __FENNIX_KERNEL_STD_H__
|
|
|
|
#include <types.h>
|
|
|
|
/**
|
|
* @brief // stub namespace for std::align_val_t and new operator
|
|
* @note // Found on https://gcc.gnu.org/legacy-ml/gcc-patches/2016-09/msg00628.html for "_ZnwmSt11align_val_t" compiler error
|
|
*/
|
|
namespace std
|
|
{
|
|
typedef __SIZE_TYPE__ size_t;
|
|
enum class align_val_t : std::size_t
|
|
{
|
|
};
|
|
}
|
|
|
|
#endif // !__FENNIX_KERNEL_STD_H__
|