16 lines
195 B
C
16 lines
195 B
C
#ifndef UOS_MAP_H
|
|
#define UOS_MAP_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define MAP_SIZE 2
|
|
|
|
extern unsigned char uos_cov_data[MAP_SIZE];
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* UOS_MAP_H */
|