mirror of
https://github.com/systemd/systemd.git
synced 2024-11-06 08:26:52 +03:00
818bf54632
This part of the copyright blurb stems from the GPL use recommendations: https://www.gnu.org/licenses/gpl-howto.en.html The concept appears to originate in times where version control was per file, instead of per tree, and was a way to glue the files together. Ultimately, we nowadays don't live in that world anymore, and this information is entirely useless anyway, as people are very welcome to copy these files into any projects they like, and they shouldn't have to change bits that are part of our copyright header for that. hence, let's just get rid of this old cruft, and shorten our codebase a bit.
24 lines
646 B
Plaintext
24 lines
646 B
Plaintext
/***
|
|
SPDX-License-Identifier: LGPL-2.1+
|
|
|
|
systemd is free software; you can redistribute it and/or modify it
|
|
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.
|
|
***/
|
|
|
|
{
|
|
global:
|
|
_nss_systemd_getpwnam_r;
|
|
_nss_systemd_getpwuid_r;
|
|
_nss_systemd_endpwent;
|
|
_nss_systemd_setpwent;
|
|
_nss_systemd_getpwent_r;
|
|
_nss_systemd_getgrnam_r;
|
|
_nss_systemd_getgrgid_r;
|
|
_nss_systemd_endgrent;
|
|
_nss_systemd_setgrent;
|
|
_nss_systemd_getgrent_r;
|
|
local: *;
|
|
};
|