source: mainline/uspace/lib/c/test/main.c@ 9bfa8c8

Last change on this file since 9bfa8c8 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: 674 bytes
Line 
1/*
2 * SPDX-FileCopyrightText: 2014 Vojtech Horky
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <stdio.h>
8#include <pcut/pcut.h>
9
10PCUT_INIT;
11
12PCUT_IMPORT(capa);
13PCUT_IMPORT(casting);
14PCUT_IMPORT(circ_buf);
15PCUT_IMPORT(double_to_str);
16PCUT_IMPORT(fibril_timer);
17PCUT_IMPORT(getopt);
18PCUT_IMPORT(gsort);
19PCUT_IMPORT(ieee_double);
20PCUT_IMPORT(imath);
21PCUT_IMPORT(inttypes);
22PCUT_IMPORT(mem);
23PCUT_IMPORT(odict);
24PCUT_IMPORT(perf);
25PCUT_IMPORT(perm);
26PCUT_IMPORT(qsort);
27PCUT_IMPORT(scanf);
28PCUT_IMPORT(sprintf);
29PCUT_IMPORT(stdio);
30PCUT_IMPORT(stdlib);
31PCUT_IMPORT(str);
32PCUT_IMPORT(string);
33PCUT_IMPORT(strtol);
34PCUT_IMPORT(table);
35PCUT_IMPORT(uuid);
36
37PCUT_MAIN();
Note: See TracBrowser for help on using the repository browser.