diff options
author | Kay Sievers <kay.sievers@vrfy.org> | 2012-04-04 13:30:09 +0200 |
---|---|---|
committer | Kay Sievers <kay.sievers@vrfy.org> | 2012-04-04 13:30:09 +0200 |
commit | 54cf0b7fa67702bb3236851f0096910b3759f1b0 (patch) | |
tree | 565c30e12d13d47f2d59f6c7d14a1a127b37d5f7 /src/udev/libudev-list.c | |
parent | 51fc11c10d7f7f24cf795d751a99d37aadf4da72 (diff) |
udev: replace UDEV_EXPORT with _public_
Diffstat (limited to 'src/udev/libudev-list.c')
-rw-r--r-- | src/udev/libudev-list.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/udev/libudev-list.c b/src/udev/libudev-list.c index 4bdef35ae8..b5d6bfd213 100644 --- a/src/udev/libudev-list.c +++ b/src/udev/libudev-list.c @@ -267,7 +267,7 @@ struct udev_list_entry *udev_list_get_entry(struct udev_list *list) * * Returns: the next entry from the list, #NULL is no more entries are found. */ -UDEV_EXPORT struct udev_list_entry *udev_list_entry_get_next(struct udev_list_entry *list_entry) +_public_ struct udev_list_entry *udev_list_entry_get_next(struct udev_list_entry *list_entry) { struct udev_list_node *next; @@ -287,7 +287,7 @@ UDEV_EXPORT struct udev_list_entry *udev_list_entry_get_next(struct udev_list_en * * Returns: the entry where @name matched, #NULL if no matching entry is found. */ -UDEV_EXPORT struct udev_list_entry *udev_list_entry_get_by_name(struct udev_list_entry *list_entry, const char *name) +_public_ struct udev_list_entry *udev_list_entry_get_by_name(struct udev_list_entry *list_entry, const char *name) { int i; @@ -309,7 +309,7 @@ UDEV_EXPORT struct udev_list_entry *udev_list_entry_get_by_name(struct udev_list * * Returns: the name string of this entry. */ -UDEV_EXPORT const char *udev_list_entry_get_name(struct udev_list_entry *list_entry) +_public_ const char *udev_list_entry_get_name(struct udev_list_entry *list_entry) { if (list_entry == NULL) return NULL; @@ -322,7 +322,7 @@ UDEV_EXPORT const char *udev_list_entry_get_name(struct udev_list_entry *list_en * * Returns: the value string of this entry. */ -UDEV_EXPORT const char *udev_list_entry_get_value(struct udev_list_entry *list_entry) +_public_ const char *udev_list_entry_get_value(struct udev_list_entry *list_entry) { if (list_entry == NULL) return NULL; |