NetBSD/usr.bin/ul/Makefile
abhinav 89e188185f Fix a buffer overflow when reading from files containing extra long lines.
Instead of using a statically allocated buffer, manage the buffer at run-time
and reallocate as needed.

It was dumping core for following two cases:
man evrpc | ul
man xdm | ul

While there, also remove __P macro from function prototypes.

Ok from Christos.
2016-06-12 13:29:29 +00:00

9 lines
178 B
Makefile

# $NetBSD: Makefile,v 1.7 2016/06/12 13:29:29 abhinav Exp $
# @(#)Makefile 8.1 (Berkeley) 6/6/93
PROG= ul
DPADD= ${LIBTERMINFO}
LDADD= -lterminfo -lutil
.include <bsd.prog.mk>