/* Projekt TEAM Demo project for a small team Version 1.0 / 2002.02.01 Autor: pstrainer@gmx.net The project consists of 3 parts, each of which can be developed and tested individually: -> team_main -> team_a (this file) -> team_b */ #include "team.h" int sub_a (int arg1,int arg2) { int ir; printf(">team_a / sub_a(%d,%d)\n",arg1,arg2); ir=999; printf(">team_a / sub_a: returning %d\n",ir); return ir; } /* ========== eof ========== */