source: mainline/uspace/lib/cpp/include/cstddef@ 8624d1f

Last change on this file since 8624d1f was b57ba05, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 3 years ago

Update headers in C++ files

  • Property mode set to 100644
File size: 304 bytes
Line 
1/*
2 * SPDX-FileCopyrightText: 2018 Jaroslav Jindrak
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef LIBCPP_CSTDDEF
8#define LIBCPP_CSTDDEF
9
10#include <stddef.h>
11
12namespace std
13{
14 using nullptr_t = decltype(nullptr);
15 using ::size_t;
16 using ::ptrdiff_t;
17 using ::max_align_t;
18}
19
20#endif
Note: See TracBrowser for help on using the repository browser.