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

Last change on this file since cb7be8f 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
RevLine 
[16bfcd3]1/*
[d7f7a4a]2 * SPDX-FileCopyrightText: 2017 CZ.NIC, z.s.p.o.
[16bfcd3]3 *
[d7f7a4a]4 * SPDX-License-Identifier: BSD-3-Clause
[16bfcd3]5 */
6
[7c3fb9b]7/*
8 * Authors:
[16bfcd3]9 * Jiří Zárevúcky (jzr) <zarevucky.jiri@gmail.com>
10 */
11
12/** @addtogroup libc
13 * @{
14 */
15/** @file
16 */
17
[4805495]18#ifndef _LIBC_WCHAR_H_
19#define _LIBC_WCHAR_H_
[16bfcd3]20
21#include <_bits/size_t.h>
22#include <_bits/wchar_t.h>
[99170e0c]23#include <_bits/wchar_limits.h>
[16bfcd3]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.