3a4441e3d4
highlights: * / is treated correctly depending upon context (addresses PR # 10995) * use 64 bit arithmetic, so expr is able to process integer values from -(2**63) to (2**63 - 1) * checks for integer over- & underflows added * error messages improved, more error checking added add AUTHOR section to manpage add BUGS section, and mention possible drawbacks with other expr implementations XXX the old expr treated empty string in arithmetic expressions as if it was 0 XXX this behaviour has been retained
7 lines
113 B
Makefile
7 lines
113 B
Makefile
# $NetBSD: Makefile,v 1.14 2000/09/19 17:20:00 jdolecek Exp $
|
|
|
|
PROG= expr
|
|
SRCS= expr.y
|
|
|
|
.include <bsd.prog.mk>
|