22 lines
304 B
C
Executable File
22 lines
304 B
C
Executable File
/*
|
|
Copyright (c), 2001-2022, Shenshu Tech. Co., Ltd.
|
|
*/
|
|
|
|
#ifndef __OT_OSAL_USER__
|
|
#define __OT_OSAL_USER__
|
|
|
|
#ifndef PROT_READ
|
|
#define PROT_READ
|
|
#endif
|
|
#ifndef PROT_WRITE
|
|
#define PROT_WRITE
|
|
#endif
|
|
#ifndef MAP_SHARED
|
|
#define MAP_SHARED
|
|
#endif
|
|
#ifndef MAP_FAILED
|
|
#define MAP_FAILED (NULL)
|
|
#endif
|
|
|
|
#endif
|