source: mainline/uspace/lib/c/include/wchar.h@ cd1e3fc0

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

Replace some license headers with SPDX identifier

Headers are replaced using tools/transorm-copyright.sh only
when it can be matched verbatim with the license header used
throughout most of the codebase.

  • Property mode set to 100644
File size: 448 bytes
Line 
1/*
2 * SPDX-FileCopyrightText: 2017 CZ.NIC, z.s.p.o.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7/*
8 * Authors:
9 * Jiří Zárevúcky (jzr) <zarevucky.jiri@gmail.com>
10 */
11
12/** @addtogroup libc
13 * @{
14 */
15/** @file
16 */
17
18#ifndef _LIBC_WCHAR_H_
19#define _LIBC_WCHAR_H_
20
21#include <_bits/size_t.h>
22#include <_bits/wchar_t.h>
23#include <_bits/wchar_limits.h>
24#include <_bits/wint_t.h>
25#include <_bits/NULL.h>
26#include <_bits/WEOF.h>
27
28#endif
29
30/** @}
31 */
Note: See TracBrowser for help on using the repository browser.