Calling Functions of Other K Shell Program

Hi,
I have a K shell
a.ksh

function abc {
// Some logic
}

In
b.ksh
i have included the a.ksh
./a.ksh

I want to call the abc function from this b.ksh script.

Thanks
Vijay

source the ./a.sh:

. ./a.sh

Thanks a lot.....