/* * AUTHOR: Trevor Woerner * START DATE: 25 September 2002 - 02:53:46 PM * MODIFIED: 25 September 2002 - 08:05:28 PM * FILENAME: add.c * PURPOSE: source for shared object * * $Revision: 1.4 $ * Copyright (C) 2002 Trevor Woerner * * This is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public Licence, version 2, * as published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public Licence for more details. * * To receive a copy of the GNU General Public Licence write to * the Free Software Foundation, 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ int MyAdd( int a, int b ) { return a+b; }