From: niklas Date: Sun, 24 Mar 1996 17:31:36 +0000 (+0000) Subject: The delay functions takes unsigned arguments. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=fac1a8aa1be40d3ca77fc95acd06d8b0e21f04ef;p=openbsd The delay functions takes unsigned arguments. --- diff --git a/sys/arch/amiga/include/param.h b/sys/arch/amiga/include/param.h index ca3df454583..85441151f59 100644 --- a/sys/arch/amiga/include/param.h +++ b/sys/arch/amiga/include/param.h @@ -244,8 +244,8 @@ splx(npsl) #endif #define spl0() splx(PSL_S|PSL_IPL0) -void delay __P((int)); -void DELAY __P((int)); +void delay __P((unsigned)); +void DELAY __P((unsigned)); #endif #endif /* !_MACHINE_PARAM_H_ */