aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2015-11-07 17:58:55 +0000
committerIngo Schwarze <schwarze@openbsd.org>2015-11-07 17:58:55 +0000
commit52461cacec49af96b6b0643f4322e9fc0b36d403 (patch)
treeaaf6acf44516521f4f6604b822aecfff87e96d54 /Makefile
parentb897019f5696c540f454bcb428d44ad31ef65559 (diff)
downloadmandoc-52461cacec49af96b6b0643f4322e9fc0b36d403.tar.gz
mandoc-52461cacec49af96b6b0643f4322e9fc0b36d403.tar.zst
mandoc-52461cacec49af96b6b0643f4322e9fc0b36d403.zip
Modernization, no functional change intended:
Use the POSIX function getline(3) rather than the slightly dangerous BSD function fgetln(3). Remove the related compatibility code.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 1 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 91caa006..fa3cee7c 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.476 2015/11/07 13:14:21 schwarze Exp $
+# $Id: Makefile,v 1.477 2015/11/07 17:58:55 schwarze Exp $
#
# Copyright (c) 2010, 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv>
# Copyright (c) 2011, 2013, 2014, 2015 Ingo Schwarze <schwarze@openbsd.org>
@@ -21,7 +21,6 @@ VERSION = 1.13.3
TESTSRCS = test-dirent-namlen.c \
test-err.c \
- test-fgetln.c \
test-fts.c \
test-getsubopt.c \
test-isblank.c \
@@ -47,7 +46,6 @@ SRCS = att.c \
cgi.c \
chars.c \
compat_err.c \
- compat_fgetln.c \
compat_fts.c \
compat_getsubopt.c \
compat_isblank.c \
@@ -207,7 +205,6 @@ LIBMANDOC_OBJS = $(LIBMAN_OBJS) \
read.o
COMPAT_OBJS = compat_err.o \
- compat_fgetln.o \
compat_fts.o \
compat_getsubopt.o \
compat_isblank.o \