int get_pirate_bread_color(void)
{
return pirate->beard->color;
}
EXPORT_SYMBOL(get_pirate_beard_color);
GPL호환모듈에게만 보이고 싶다면 다음과 같이 선언한다.
EXPORT_SYMBOL_GPL(get_pirate_beard_color)
get_pirate_beard_color()가 접근 가능한 헤더 파일에 선언되어 있다면 이제 어떤 모듈에서도 이 함수를 접근할 수 있다.
EXPORT_SYMBOL(get_pirate_beard_color);
GPL호환모듈에게만 보이고 싶다면 다음과 같이 선언한다.
EXPORT_SYMBOL_GPL(get_pirate_beard_color)
get_pirate_beard_color()가 접근 가능한 헤더 파일에 선언되어 있다면 이제 어떤 모듈에서도 이 함수를 접근할 수 있다.