Contiki 2.5
io.h
1 #ifndef __IO_H__7UTLUP9AG6__
2 #define __IO_H__7UTLUP9AG6__
3 
4 #include <AT91SAM7S64.h>
5 
6 
7 #ifndef BV
8 #define BV(x) (1<<(x))
9 #endif
10 
11 int splhigh(void);
12 
13 void splx(int saved);
14 
15 #endif /* __IO_H__7UTLUP9AG6__ */