build-sys: export sd_path APIs

This commit is contained in:
Lennart Poettering 2014-07-11 03:13:24 +02:00
parent c9fdc26e96
commit 2de30868ed
3 changed files with 8 additions and 3 deletions

View File

@ -5640,7 +5640,8 @@ test-libsystemd-sym.c: \
src/systemd/sd-login.h \
src/systemd/sd-bus.h \
src/systemd/sd-utf8.h \
src/systemd/sd-resolve.h
src/systemd/sd-resolve.h \
src/systemd/sd-path.h
$(generate-sym-test)
test-libudev-sym.c: \

View File

@ -440,5 +440,9 @@ global:
sd_resolve_query_get_userdata;
sd_resolve_query_set_userdata;
sd_resolve_query_get_resolve;
/* sd-path */
sd_path_home;
sd_path_search;
} LIBSYSTEMD_214;
)

View File

@ -326,7 +326,7 @@ static int get_path(uint64_t type, char **buffer, const char **ret) {
return -ENOTSUP;
}
int sd_path_home(uint64_t type, const char *suffix, char **path) {
_public_ int sd_path_home(uint64_t type, const char *suffix, char **path) {
char *buffer = NULL, *cc;
const char *ret;
int r;
@ -555,7 +555,7 @@ static int get_search(uint64_t type, char ***list) {
return -ENOTSUP;
}
int sd_path_search(uint64_t type, const char *suffix, char ***paths) {
_public_ int sd_path_search(uint64_t type, const char *suffix, char ***paths) {
char **l, **i, **j, **n;
int r;