.. | .. |
---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-only */ |
---|
1 | 2 | /* |
---|
2 | 3 | * tools/testing/selftests/kvm/include/sparsebit.h |
---|
3 | 4 | * |
---|
4 | 5 | * Copyright (C) 2018, Google LLC. |
---|
5 | | - * |
---|
6 | | - * This work is licensed under the terms of the GNU GPL, version 2. |
---|
7 | | - * |
---|
8 | 6 | * |
---|
9 | 7 | * Header file that describes API to the sparsebit library. |
---|
10 | 8 | * This library provides a memory efficient means of storing |
---|
.. | .. |
---|
15 | 13 | * even in the case where most bits are set. |
---|
16 | 14 | */ |
---|
17 | 15 | |
---|
18 | | -#ifndef _TEST_SPARSEBIT_H_ |
---|
19 | | -#define _TEST_SPARSEBIT_H_ |
---|
| 16 | +#ifndef SELFTEST_KVM_SPARSEBIT_H |
---|
| 17 | +#define SELFTEST_KVM_SPARSEBIT_H |
---|
20 | 18 | |
---|
21 | 19 | #include <stdbool.h> |
---|
22 | 20 | #include <stdint.h> |
---|
.. | .. |
---|
72 | 70 | } |
---|
73 | 71 | #endif |
---|
74 | 72 | |
---|
75 | | -#endif /* _TEST_SPARSEBIT_H_ */ |
---|
| 73 | +#endif /* SELFTEST_KVM_SPARSEBIT_H */ |
---|