File: test_headers.c

package info (click to toggle)
zix 0.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 828 kB
  • sloc: ansic: 9,083; cpp: 479; python: 127; makefile: 6
file content (28 lines) | stat: -rw-r--r-- 1,016 bytes parent folder | download | duplicates (2)
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;
}