remove leftover strlcpy and util stuff - sob - simple output bar
(HTM) git clone git://git.codemadness.org/sob
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 1ab0f13c8f9a8de7f3f0adb586cd1b22fc6f1023
(DIR) parent 739f0257360815ab73257e8b1f682567a140f781
(HTM) Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date: Sun, 12 Oct 2014 23:58:29 +0000
remove leftover strlcpy and util stuff
Diffstat:
M Makefile | 4 ++--
M sob.c | 2 --
2 files changed, 2 insertions(+), 4 deletions(-)
---
(DIR) diff --git a/Makefile b/Makefile
@@ -1,7 +1,7 @@
include config.mk
-SRC = sob.c strlcpy.c
-HDR = arg.h config.def.h util.h
+SRC = sob.c
+HDR = arg.h config.def.h
OBJ = ${SRC:.c=.o}
all: options sob
(DIR) diff --git a/sob.c b/sob.c
@@ -16,8 +16,6 @@
#include "arg.h"
char *argv0;
-#include "util.h"
-
#define LEN(x) (sizeof (x) / sizeof *(x))
#define ISUTF8(c) (((c) & 0xc0) != 0x80)