chiark / gitweb /
libudev: add comments to libudev.h
[elogind.git] / udev / lib / libudev-list.c
index 0c13b6d9277ae064a138e71305aa40e448ea56d4..182d75aa8a201d116f0fdb4c1231b6d6a318aa4a 100644 (file)
@@ -220,14 +220,14 @@ const char *udev_list_entry_get_value(struct udev_list_entry *list_entry)
        return list_entry->value;
 }
 
-extern int udev_list_entry_get_flag(struct udev_list_entry *list_entry)
+int udev_list_entry_get_flag(struct udev_list_entry *list_entry)
 {
        if (list_entry == NULL)
                return -EINVAL;
        return list_entry->flag;
 }
 
-extern void udev_list_entry_set_flag(struct udev_list_entry *list_entry, int flag)
+void udev_list_entry_set_flag(struct udev_list_entry *list_entry, int flag)
 {
        if (list_entry == NULL)
                return;