/* Copyright (c) 2001-2009 by SoftIntegration, Inc. All Rights Reserved */
/* Header file for cases of returning a system default function */

/* This is an empty function. Only its address is used */
return_type _Ch_PROC_Default(data_type2) {
  return_type retval; 
  return retval;
}

/* if the system default function has no return value,
   the fake Ch function should look like
void _Ch_PROC_Default(data_type2) {
}
*/

/* ... */
