Style: use the defined() expression explicitly.

This commit is contained in:
Ruslan Ermilov 2004-02-07 11:05:10 +00:00
parent d85f27ce7f
commit 079cbb98ac
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=125561

View file

@ -19,15 +19,15 @@ SRCS+= dev_net.c
.endif
# Machine-independant ISA PnP
.if HAVE_ISABUS
.if defined(HAVE_ISABUS)
SRCS+= isapnp.c
.endif
.if HAVE_PNP
.if defined(HAVE_PNP)
SRCS+= pnp.c
.endif
# Forth interpreter
.if BOOT_FORTH
.if defined(BOOT_FORTH)
SRCS+= interp_forth.c
MAN+= ../forth/loader.conf.5
MAN+= ../forth/loader.4th.8