1 /*
2  * Copyright (c) 2025 Henrik Brix Andersen <henrik@brixandersen.dk>
3  * SPDX-License-Identifier: Apache-2.0
4  */
5 
6 #undef _XOPEN_SOURCE
7 #define _XOPEN_SOURCE 500
8 
9 #include <unistd.h>
10 
11 #include "hwinfo_native_bottom.h"
12 
native_hwinfo_gethostid_bottom(void)13 long native_hwinfo_gethostid_bottom(void)
14 {
15 	return gethostid();
16 }
17