10 lines
143 B
C
Executable File
10 lines
143 B
C
Executable File
#ifndef _FSLED_H
|
|
#define _FSLED_H
|
|
|
|
#define FSLED_MAGIC 'f'
|
|
|
|
#define FSLED_ON _IO(FSLED_MAGIC, 0)
|
|
#define FSLED_OFF _IO(FSLED_MAGIC, 1)
|
|
|
|
#endif
|