1
1
Gilles Gouaillardet 2f391a99a7 ROMIO 3.2.1 refresh: import romio from mpich 3.2.1 tarball
Signed-off-by: Gilles Gouaillardet <gilles@rist.or.jp>
2018-06-20 14:28:14 +09:00

14 строки
422 B
Plaintext

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