summaryrefslogtreecommitdiffstats
path: root/libblkid/path.h
diff options
context:
space:
mode:
authorbigbiff <bigbiff@teamw.in>2015-01-02 01:44:14 +0100
committerDees Troy <dees_troy@teamw.in>2015-01-05 04:38:42 +0100
commit7b4c7a681cc4c0a53dc8a8baf4853e921cfbf5de (patch)
treefb69cb515cb4ab675d5850684cc402100b7a2a22 /libblkid/path.h
parentcrypto: remove unused libs and clean up makefile (diff)
downloadandroid_bootable_recovery-7b4c7a681cc4c0a53dc8a8baf4853e921cfbf5de.tar
android_bootable_recovery-7b4c7a681cc4c0a53dc8a8baf4853e921cfbf5de.tar.gz
android_bootable_recovery-7b4c7a681cc4c0a53dc8a8baf4853e921cfbf5de.tar.bz2
android_bootable_recovery-7b4c7a681cc4c0a53dc8a8baf4853e921cfbf5de.tar.lz
android_bootable_recovery-7b4c7a681cc4c0a53dc8a8baf4853e921cfbf5de.tar.xz
android_bootable_recovery-7b4c7a681cc4c0a53dc8a8baf4853e921cfbf5de.tar.zst
android_bootable_recovery-7b4c7a681cc4c0a53dc8a8baf4853e921cfbf5de.zip
Diffstat (limited to '')
-rw-r--r--libblkid/path.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/libblkid/path.h b/libblkid/path.h
deleted file mode 100644
index 615d28491..000000000
--- a/libblkid/path.h
+++ /dev/null
@@ -1,31 +0,0 @@
-#ifndef UTIL_LINUX_PATH_H
-#define UTIL_LINUX_PATH_H
-
-#include <stdio.h>
-#include <stdint.h>
-
-extern FILE *path_fopen(const char *mode, int exit_on_err, const char *path, ...)
- __attribute__ ((__format__ (__printf__, 3, 4)));
-extern void path_read_str(char *result, size_t len, const char *path, ...)
- __attribute__ ((__format__ (__printf__, 3, 4)));
-extern int path_write_str(const char *str, const char *path, ...)
- __attribute__ ((__format__ (__printf__, 2, 3)));
-extern int path_read_s32(const char *path, ...)
- __attribute__ ((__format__ (__printf__, 1, 2)));
-extern uint64_t path_read_u64(const char *path, ...)
- __attribute__ ((__format__ (__printf__, 1, 2)));
-
-extern int path_exist(const char *path, ...)
- __attribute__ ((__format__ (__printf__, 1, 2)));
-
-#ifdef HAVE_CPU_SET_T
-# include "cpuset.h"
-
-extern cpu_set_t *path_read_cpuset(int, const char *path, ...)
- __attribute__ ((__format__ (__printf__, 2, 3)));
-extern cpu_set_t *path_read_cpulist(int, const char *path, ...)
- __attribute__ ((__format__ (__printf__, 2, 3)));
-extern void path_set_prefix(const char *);
-#endif /* HAVE_CPU_SET_T */
-
-#endif /* UTIL_LINUX_PATH_H */