blob: e4eb600ed6c7f39f27d74062a0fe57c9e19128c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once
#if HAVE_BLKID
#include <blkid.h>
#endif
#include "util.h"
#if HAVE_BLKID
DEFINE_TRIVIAL_CLEANUP_FUNC(blkid_probe, blkid_free_probe);
#endif
|