]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/test/test-hostname.c
libudev: hide definition of struct udev_list from other libudev components
[thirdparty/systemd.git] / src / test / test-hostname.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
e5907703 2
e5907703
LP
3#include "hostname-setup.h"
4#include "util.h"
5
6int main(int argc, char* argv[]) {
7 int r;
8
b0193f1c
LP
9 r = hostname_setup();
10 if (r < 0)
da927ba9 11 log_error_errno(r, "hostname: %m");
e5907703
LP
12
13 return 0;
14}