15 lines
162 B
C
15 lines
162 B
C
|
#ifndef __PUBLIC_DIY_H__
|
||
|
#define __PUBLIC_DIY_H__
|
||
|
|
||
|
|
||
|
#ifndef RET_OK
|
||
|
#define RET_OK (0u)
|
||
|
#endif
|
||
|
|
||
|
#ifndef RET_ERROR
|
||
|
#define RET_ERROR (1u)
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#endif
|