diff options
author | Andrew Gregory <andrew.gregory.8@gmail.com> | 2014-06-26 11:50:34 -0400 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2014-08-03 18:46:32 +1000 |
commit | e8de265f8039165dc32ffb78f6a6a5eb0c1514ad (patch) | |
tree | 83363a49ca0e14815e2f866d8682a3cb905a4cfe /lib/libalpm/util.h | |
parent | 0e2db97a42df30d2731e4842b245191a68817d78 (diff) | |
download | pacman-e8de265f8039165dc32ffb78f6a6a5eb0c1514ad.tar.xz |
move _alpm_lstat into util-common
Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
Diffstat (limited to 'lib/libalpm/util.h')
-rw-r--r-- | lib/libalpm/util.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/libalpm/util.h b/lib/libalpm/util.h index 20f63f64..6f47073b 100644 --- a/lib/libalpm/util.h +++ b/lib/libalpm/util.h @@ -35,7 +35,6 @@ #include <stdarg.h> #include <stddef.h> /* size_t */ #include <sys/types.h> -#include <sys/stat.h> /* struct stat */ #include <math.h> /* fabs */ #include <float.h> /* DBL_EPSILON */ #include <fcntl.h> /* open, close */ @@ -128,7 +127,6 @@ int _alpm_ldconfig(alpm_handle_t *handle); int _alpm_str_cmp(const void *s1, const void *s2); char *_alpm_filecache_find(alpm_handle_t *handle, const char *filename); const char *_alpm_filecache_setup(alpm_handle_t *handle); -int _alpm_lstat(const char *path, struct stat *buf); int _alpm_test_checksum(const char *filepath, const char *expected, alpm_pkgvalidation_t type); int _alpm_archive_fgets(struct archive *a, struct archive_read_buffer *b); int _alpm_splitname(const char *target, char **name, char **version, |