1
1

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;