source: mainline/uspace/lib/c/include/fourcc.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: 260 bytes
RevLine 
[7ad3c2f]1/*
[d7f7a4a]2 * SPDX-FileCopyrightText: 2017 Jakub Jermar
[7ad3c2f]3 *
[d7f7a4a]4 * SPDX-License-Identifier: BSD-3-Clause
[7ad3c2f]5 */
6
[002e613]7/** @addtogroup libc
[b2951e2]8 * @{
9 */
10/** @file
11 */
12
[4805495]13#ifndef _LIBC_FOURCC_H_
14#define _LIBC_FOURCC_H_
[7ad3c2f]15
[e299dbe]16#include <stdint.h>
[5d4e90f0]17
[abf2dfd]18typedef uint32_t fourcc_t;
19
[7ad3c2f]20#endif
21
[002e613]22/** @}
[b2951e2]23 */
Note: See TracBrowser for help on using the repository browser.