diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2015-11-07 20:52:52 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2015-11-07 20:52:52 +0000 |
commit | c87f2b1ba757fbed3fb5c8015cc690c723f61b93 (patch) | |
tree | d9010efc784d0b9c26c72347c6ab7a8d1429fd81 /Makefile | |
parent | f024d444d299de331f8a9c932e479fedfbba6c5e (diff) | |
download | mandoc-c87f2b1ba757fbed3fb5c8015cc690c723f61b93.tar.gz |
provide a simple stand-alone implementation of getline(3)
for systems lacking it
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -22,6 +22,7 @@ VERSION = 1.13.3 TESTSRCS = test-dirent-namlen.c \ test-err.c \ test-fts.c \ + test-getline.c \ test-getsubopt.c \ test-isblank.c \ test-mkdtemp.c \ @@ -47,6 +48,7 @@ SRCS = att.c \ chars.c \ compat_err.c \ compat_fts.c \ + compat_getline.c \ compat_getsubopt.c \ compat_isblank.c \ compat_mkdtemp.c \ @@ -206,6 +208,7 @@ LIBMANDOC_OBJS = $(LIBMAN_OBJS) \ COMPAT_OBJS = compat_err.o \ compat_fts.o \ + compat_getline.o \ compat_getsubopt.o \ compat_isblank.o \ compat_mkdtemp.o \ |