1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
// Copyright 2022 David Robillard <d@drobilla.net>
// SPDX-License-Identifier: ISC
#include <zix/allocator.h> // IWYU pragma: keep
#include <zix/attributes.h> // IWYU pragma: keep
#include <zix/btree.h> // IWYU pragma: keep
#include <zix/bump_allocator.h> // IWYU pragma: keep
#include <zix/digest.h> // IWYU pragma: keep
#include <zix/environment.h> // IWYU pragma: keep
#include <zix/filesystem.h> // IWYU pragma: keep
#include <zix/hash.h> // IWYU pragma: keep
#include <zix/path.h> // IWYU pragma: keep
#include <zix/ring.h> // IWYU pragma: keep
#include <zix/sem.h> // IWYU pragma: keep
#include <zix/status.h> // IWYU pragma: keep
#include <zix/string_view.h> // IWYU pragma: keep
#include <zix/thread.h> // IWYU pragma: keep
#include <zix/tree.h> // IWYU pragma: keep
#include <zix/zix.h> // IWYU pragma: keep
#if defined(__GNUC__)
__attribute__((const))
#endif
int
main(void)
{
return 0;
}
|