blob: 72ea03c4934fa57281c0dc4ab60a3ac5c238f36e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// -*- C++ -*-
//===----------------------------------------------------------------------===//
//
// Part of the BastionOS freestanding C++ standard library.
//
//===----------------------------------------------------------------------===//
#ifndef _LIBBASTION_MEMORY
#define _LIBBASTION_MEMORY
#include <__config>
#include <__memory/addressof.h>
#include <__memory/pointer_traits.h>
#include <__memory/unique_ptr.h>
#endif // _LIBBASTION_MEMORY
|