1
0
mirror of https://github.com/systemd/systemd.git synced 2025-02-01 09:47:35 +03:00

sd-json: properly export sd_json_variant_type_from_string() and _to_string()

These exist in the header file, but were not exporeted.

Continuation of e11f5aa7226253bf31b2ed61be8599bb213c1819.
This commit is contained in:
Yu Watanabe 2024-12-12 10:09:52 +09:00
parent 9d8cb69e7f
commit 5fcabde35b
2 changed files with 3 additions and 1 deletions

View File

@ -1062,5 +1062,7 @@ global:
LIBSYSTEMD_258 {
global:
sd_json_variant_type_from_string;
sd_json_variant_type_to_string;
sd_varlink_reset_fds;
} LIBSYSTEMD_257;

View File

@ -5808,4 +5808,4 @@ static const char* const sd_json_variant_type_table[_SD_JSON_VARIANT_TYPE_MAX] =
[SD_JSON_VARIANT_NULL] = "null",
};
DEFINE_STRING_TABLE_LOOKUP(sd_json_variant_type, sd_json_variant_type_t);
_DEFINE_STRING_TABLE_LOOKUP(sd_json_variant_type, sd_json_variant_type_t, _public_);