source: mainline/uspace/lib/c/include/entry_point.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: 332 bytes
RevLine 
[c98e6ee]1/*
[d7f7a4a]2 * SPDX-FileCopyrightText: 2011 Jiri Svoboda
[c98e6ee]3 *
[d7f7a4a]4 * SPDX-License-Identifier: BSD-3-Clause
[c98e6ee]5 */
6
[bae7bdc]7/** @addtogroup libc
[c98e6ee]8 * @{
9 */
10/** @file
11 */
12
[4805495]13#ifndef _LIBC_ENTRY_POINT_H_
14#define _LIBC_ENTRY_POINT_H_
[c98e6ee]15
[bae7bdc]16/* Defined in arch/ARCH/src/entryjmp.[c|s] */
[31a30fa]17void entry_point_jmp(void *, void *) __attribute__((noreturn));
[c98e6ee]18
19#endif
20
[bae7bdc]21/** @}
[c98e6ee]22 */
Note: See TracBrowser for help on using the repository browser.