summaryrefslogtreecommitdiff
path: root/src/libsystemd-basic/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/libsystemd-basic/include')
-rw-r--r--src/libsystemd-basic/include/systemd-basic/.gitignore16
-rw-r--r--src/libsystemd-basic/include/systemd-basic/blkid-util.h31
2 files changed, 0 insertions, 47 deletions
diff --git a/src/libsystemd-basic/include/systemd-basic/.gitignore b/src/libsystemd-basic/include/systemd-basic/.gitignore
deleted file mode 100644
index e22411e484..0000000000
--- a/src/libsystemd-basic/include/systemd-basic/.gitignore
+++ /dev/null
@@ -1,16 +0,0 @@
-/cap-from-name.gperf
-/cap-from-name.h
-/cap-list.txt
-/cap-to-name.h
-/errno-from-name.gperf
-/errno-from-name.h
-/errno-list.txt
-/errno-to-name.h
-/af-from-name.gperf
-/af-from-name.h
-/af-list.txt
-/af-to-name.h
-/arphrd-from-name.gperf
-/arphrd-from-name.h
-/arphrd-list.txt
-/arphrd-to-name.h
diff --git a/src/libsystemd-basic/include/systemd-basic/blkid-util.h b/src/libsystemd-basic/include/systemd-basic/blkid-util.h
deleted file mode 100644
index 7aa75eb091..0000000000
--- a/src/libsystemd-basic/include/systemd-basic/blkid-util.h
+++ /dev/null
@@ -1,31 +0,0 @@
-#pragma once
-
-/***
- This file is part of systemd.
-
- Copyright 2014 Lennart Poettering
-
- systemd is free software; you can redistribute it and/or modify it
- under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation; either version 2.1 of the License, or
- (at your option) any later version.
-
- systemd is distributed in the hope that it will be useful, but
- WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General Public License
- along with systemd; If not, see <http://www.gnu.org/licenses/>.
-***/
-
-#ifdef HAVE_BLKID
-#include <blkid/blkid.h>
-#endif
-
-#include "util.h"
-
-#ifdef HAVE_BLKID
-DEFINE_TRIVIAL_CLEANUP_FUNC(blkid_probe, blkid_free_probe);
-#define _cleanup_blkid_free_probe_ _cleanup_(blkid_free_probep)
-#endif