Update prototype of maskInterrupt to match implementations.

The prototype will ultimately be removed, but the mismatch is presently
breaking verification.
This commit is contained in:
Rafal Kolanski 2016-08-05 16:42:04 +10:00
parent 6859e3bbd9
commit e105053581

View file

@ -29,5 +29,6 @@ irq_t getActiveIRQ(void);
bool_t isIRQPending(void);
/** MODIFIES: [*] */
void maskInterrupt(bool_t enable, irq_t irq);
void maskInterrupt(bool_t disable, irq_t irq);
#endif