X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fsystemd%2Fsd-id128.h;h=30cb686557e14d7cd36194b4921e1277b2c31ee2;hb=e9d21f240704f87c6bb5f7fca1c5e6d0f31c84cd;hp=22fcb932719fe508a8792785905b027150a7f214;hpb=e4bac488f9eee315c86ff2f6d15341be58a87a8a;p=elogind.git diff --git a/src/systemd/sd-id128.h b/src/systemd/sd-id128.h index 22fcb9327..30cb68655 100644 --- a/src/systemd/sd-id128.h +++ b/src/systemd/sd-id128.h @@ -9,16 +9,16 @@ Copyright 2011 Lennart Poettering systemd is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or + under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. systemd is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + Lesser General Public License for more details. - You should have received a copy of the GNU General Public License + You should have received a copy of the GNU Lesser General Public License along with systemd; If not, see . ***/ @@ -26,6 +26,10 @@ #include #include +#ifdef __cplusplus +extern "C" { +#endif + typedef union sd_id128 sd_id128_t; union sd_id128 { @@ -58,4 +62,8 @@ static inline bool sd_id128_equal(sd_id128_t a, sd_id128_t b) { return memcmp(&a, &b, 16) == 0; } +#ifdef __cplusplus +} +#endif + #endif