Tizen native API recommends using guard phrase for inclusion in the
form of __TIZEN_<MODULE>_<SUBMODULE>_<FILE_BASENAME>_H__.
Change-Id: Iec8eee92762670f0c3b569828cd03935463dea20
Signed-off-by: Youngjae Cho <y0.cho@samsung.com>
@redirect_output('header')
def generate_header(self):
- bp.print_head(title='system-info-generated', guard='__SYSTEM_INFO_GENERATED_H__')
+ bp.print_head(title='system-info-generated', guard='__TIZEN_SYSTEM_SYSTEM_INFO_GENERATED_H__')
bp.print_include(['system_info.h'])
for enum in self._enums:
enum.print_enum_declaration()
for feature in self._features:
feature.print_function(body=False)
- bp.print_tail(guard='__SYSTEM_INFO_GENERATED_H__')
+ bp.print_tail(guard='__TIZEN_SYSTEM_SYSTEM_INFO_GENERATED_H__')