summaryrefslogtreecommitdiff
path: root/src/state/hpr_wall_seconds.c
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2019-04-16 20:37:01 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2019-04-16 20:37:01 +0000
commit73cff35173dd75b0254ae7cf9098c32822859de0 (patch)
treefd1bb09611b2b7064967ca8d8b2aef98514e616b /src/state/hpr_wall_seconds.c
parent5199738f4e32773f4f752a94998593e18e3af36f (diff)
downloads6-linux-init-73cff35173dd75b0254ae7cf9098c32822859de0.tar.xz
It builds! Tomorrow: skeletons for stage2, stage3 and runlevel scripts.
Diffstat (limited to 'src/state/hpr_wall_seconds.c')
-rw-r--r--src/state/hpr_wall_seconds.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/state/hpr_wall_seconds.c b/src/state/hpr_wall_seconds.c
deleted file mode 100644
index 6c0363b..0000000
--- a/src/state/hpr_wall_seconds.c
+++ /dev/null
@@ -1,12 +0,0 @@
-/* ISC license. */
-
-#include "hpr.h"
-
-void hpr_wall_seconds (unsigned int secs)
-{
- char buf[300] = HPR_WALL_BANNER ;
- size_t n = sizeof(HPR_WALL_BANNER) - 1 ;
- n += hpr_fmttime(buf + n, 300 - n, secs) ;
- buf[n++] = 0 ;
- hpr_wall(buf) ;
-}