Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.
29280 Discussions

Module definitions for hiding functions

cdhouston
Beginner
512 Views
I am trying to combine functions from two software programs into one larger application. I have about 60 pairs of routines that have the same names. Can I hide one set of the functions by defining them as private within a module definition, and keep all access to these within the module itself?
0 Kudos
1 Reply
Steven_L_Intel1
Employee
512 Views
Yep. You could also be clever with a renaming clause on a USE to change the names so as to avoid conflicts.

Steve
0 Kudos
Reply