diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2021-04-21 13:50:10 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2021-04-21 13:50:10 +0000 |
commit | dacf8817be3943b8911d290fb9cbaaa5d659ad95 (patch) | |
tree | acd0824056af774b20c01bb7649a1ea05c25dda9 /src/os/freebsd-os_final_wtmp.c | |
parent | 2c0bf67b7612a11f64e7407a69b51d909a5ae277 (diff) | |
download | s6-linux-init-dacf8817be3943b8911d290fb9cbaaa5d659ad95.tar.xz |
The final wtmp entry is also os-specific
Diffstat (limited to 'src/os/freebsd-os_final_wtmp.c')
-rw-r--r-- | src/os/freebsd-os_final_wtmp.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/os/freebsd-os_final_wtmp.c b/src/os/freebsd-os_final_wtmp.c new file mode 100644 index 0000000..868e0c3 --- /dev/null +++ b/src/os/freebsd-os_final_wtmp.c @@ -0,0 +1,10 @@ +/* ISC license. */ + +#include "os.h" + + /* FreeBSD only does utx.log (wtmp) operations at the rc level. */ + +void os_final_wtmp (int what) +{ + (void)what ; +} |