Blame src/mpi/romio/test/.codingcheck

Packit Service c5cf8c
#
Packit Service c5cf8c
# We allow these routines for the romio test programs 
Packit Service c5cf8c
%romioTestRoutines = ( 
Packit Service c5cf8c
	'printf' => sys, 'fprintf' => sys , 'sprintf' => sys, 'vprintf' => sys,
Packit Service c5cf8c
	'strcpy' => sys, 'strncpy' => sys, 'strcat' => sys, 
Packit Service c5cf8c
	'malloc' => sys, 'free' => sys, 'calloc' => sys, 'strdup' => sys,
Packit Service c5cf8c
	'assert' => sys, 'snprintf' => sys, 
Packit Service c5cf8c
	);
Packit Service c5cf8c
if (defined(&PushAllowFuncNames)) {
Packit Service c5cf8c
    &PushAllowFuncNames( "romioTestRoutines", "tree", "add" );
Packit Service c5cf8c
}
Packit Service c5cf8c
Packit Service c5cf8c
1;