source: mainline/uspace/lib/cpp/include/cstddef@ c6f23a7

Last change on this file since c6f23a7 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
RevLine 
[b83ec692]1/*
[b57ba05]2 * SPDX-FileCopyrightText: 2018 Jaroslav Jindrak
[b83ec692]3 *
[b57ba05]4 * SPDX-License-Identifier: BSD-3-Clause
[b83ec692]5 */
6
7#ifndef LIBCPP_CSTDDEF
8#define LIBCPP_CSTDDEF
9
[bc56f30]10#include <stddef.h>
[ac47ba95]11
[de53138]12namespace std
13{
[53afa639]14 using nullptr_t = decltype(nullptr);
[bc56f30]15 using ::size_t;
16 using ::ptrdiff_t;
17 using ::max_align_t;
[b83ec692]18}
19
20#endif
Note: See TracBrowser for help on using the repository browser.