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
RevLine 
[2bff9860]1/*
[d7f7a4a]2 * SPDX-FileCopyrightText: 2014 Vojtech Horky
[2bff9860]3 *
[d7f7a4a]4 * SPDX-License-Identifier: BSD-3-Clause
[2bff9860]5 */
6
7#include <stdio.h>
[134ac5d]8#include <pcut/pcut.h>
[2bff9860]9
[3f932a7e]10PCUT_INIT;
[2bff9860]11
[c24b0dcb]12PCUT_IMPORT(capa);
[32236e5]13PCUT_IMPORT(casting);
[7a6065c]14PCUT_IMPORT(circ_buf);
[88e7dc5]15PCUT_IMPORT(double_to_str);
[12dcd5f]16PCUT_IMPORT(fibril_timer);
[88e7dc5]17PCUT_IMPORT(getopt);
18PCUT_IMPORT(gsort);
19PCUT_IMPORT(ieee_double);
20PCUT_IMPORT(imath);
[9912f49]21PCUT_IMPORT(inttypes);
[2498b95]22PCUT_IMPORT(mem);
[838ea8aa]23PCUT_IMPORT(odict);
[8ee106b]24PCUT_IMPORT(perf);
[9c75a99d]25PCUT_IMPORT(perm);
[f2460a50]26PCUT_IMPORT(qsort);
[ed18e14]27PCUT_IMPORT(scanf);
[2bff9860]28PCUT_IMPORT(sprintf);
[4e6a610]29PCUT_IMPORT(stdio);
[8338a81]30PCUT_IMPORT(stdlib);
[a18a8b9]31PCUT_IMPORT(str);
[99d3123]32PCUT_IMPORT(string);
[a4e78743]33PCUT_IMPORT(strtol);
[5e962ad]34PCUT_IMPORT(table);
[88e7dc5]35PCUT_IMPORT(uuid);
[2bff9860]36
[013e5d32]37PCUT_MAIN();
Note: See TracBrowser for help on using the repository browser.