mirror of
https://git.proxmox.com/git/systemd
synced 2026-01-11 22:05:22 +00:00
11 lines
200 B
C
11 lines
200 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
#if HAVE_BLKID
|
|
# include <blkid.h>
|
|
|
|
# include "macro.h"
|
|
|
|
DEFINE_TRIVIAL_CLEANUP_FUNC_FULL(blkid_probe, blkid_free_probe, NULL);
|
|
#endif
|