summaryrefslogtreecommitdiff
path: root/src/basic/blkid-util.h
blob: 4c9ef5b6012c1e391dd54c9ce656ad68ff9c0ccb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once

/***
  This file is part of systemd.

  Copyright 2014 Lennart Poettering
***/

#if HAVE_BLKID
#include <blkid.h>
#endif

#include "util.h"

#if HAVE_BLKID
DEFINE_TRIVIAL_CLEANUP_FUNC(blkid_probe, blkid_free_probe);
#define _cleanup_blkid_free_probe_ _cleanup_(blkid_free_probep)
#endif