cpu/native: remove dINT/eINT definitions

This commit is contained in:
Joakim Gebart 2015-08-17 11:50:40 +02:00 committed by Joakim Nohlgård
parent 6473fa77d4
commit 27565a655e
2 changed files with 0 additions and 15 deletions

View File

@ -26,10 +26,6 @@
extern "C" { extern "C" {
#endif #endif
/* TODO: remove once these have been removed from RIOT: */
void dINT(void);
void eINT(void);
/** /**
* @brief Prints the last instruction's address * @brief Prints the last instruction's address
*/ */

View File

@ -218,17 +218,6 @@ int inISR(void)
return _native_in_isr; return _native_in_isr;
} }
void dINT(void)
{
disableIRQ();
}
void eINT(void)
{
enableIRQ();
}
int _native_popsig(void) int _native_popsig(void)
{ {
int nread, nleft, i; int nread, nleft, i;