]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/basic/blkid-util.h
Merge pull request #8575 from keszybz/non-absolute-paths
[thirdparty/systemd.git] / src / basic / blkid-util.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 /***
5 This file is part of systemd.
6
7 Copyright 2014 Lennart Poettering
8 ***/
9
10 #if HAVE_BLKID
11 #include <blkid.h>
12 #endif
13
14 #include "util.h"
15
16 #if HAVE_BLKID
17 DEFINE_TRIVIAL_CLEANUP_FUNC(blkid_probe, blkid_free_probe);
18 #define _cleanup_blkid_free_probe_ _cleanup_(blkid_free_probep)
19 #endif