]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/test/test-hostname.c
tree-wide: remove Lennart's copyright lines
[thirdparty/systemd.git] / src / test / test-hostname.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2
3 #include "hostname-setup.h"
4 #include "util.h"
5
6 int main(int argc, char* argv[]) {
7 int r;
8
9 r = hostname_setup();
10 if (r < 0)
11 log_error_errno(r, "hostname: %m");
12
13 return 0;
14 }