13 lines
172 B
C
13 lines
172 B
C
#ifndef __SLEEP_H__
|
|
#define __SLEEP_H__
|
|
|
|
#include "lin.h"
|
|
|
|
#if (SLEEP_SUPPORT == 1)
|
|
#include "main.h"
|
|
|
|
void sleep(void);
|
|
#endif /* End #if (SLEEP_SUPPORT == 1) */
|
|
|
|
#endif
|