How do I declare a private function in Fortran?
Private xxx, yyy, zzz real function xxx (v) ... end function xxx integer function yyy() ... end function yyy subroutine zzz ( a,b,c ) ... end subroutine zzz ... other stuff that calls them ...