83 lines
3.4 KiB
C
83 lines
3.4 KiB
C
|
/*---------------------------------------------------------------------------------*/
|
||
|
/* $RCSfile: demo0_obj.c,v $ */
|
||
|
/*---------------------------------------------------------------------------------*/
|
||
|
/* $Revision: 1.1 $ */
|
||
|
/* $Name: $ */
|
||
|
/* $Date: 2003/01/20 00:18:09 $ */
|
||
|
/* $Author: agibert $ */
|
||
|
/*---------------------------------------------------------------------------------*/
|
||
|
|
||
|
/*---------------------------------------------------------------------------------*/
|
||
|
/* This file is part of LibVer */
|
||
|
/* */
|
||
|
/* LibVer is free software; you can redistribute it and/or modify */
|
||
|
/* it under the terms of the GNU General Public Licence as published by */
|
||
|
/* the Free Software Foundation; either version 2 of the License, or */
|
||
|
/* (at your option) any later version. */
|
||
|
/* */
|
||
|
/* LibVer 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 Lesser General Public License for more details. */
|
||
|
/* */
|
||
|
/* You should have received a copy of the GNU General Public License */
|
||
|
/* along with Foobar; if not, write to the Free Software */
|
||
|
/* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
||
|
/*---------------------------------------------------------------------------------*/
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
/*---------------------------------------------------------------------------------*/
|
||
|
/* Includes */
|
||
|
/*---------------------------------------------------------------------------------*/
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <errno.h>
|
||
|
|
||
|
#ifdef _LIBVER_SUPPORT
|
||
|
# include <ver.h>
|
||
|
#endif
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
/*---------------------------------------------------------------------------------*/
|
||
|
/* Constants */
|
||
|
/*---------------------------------------------------------------------------------*/
|
||
|
|
||
|
#ifdef _LIBVER_SUPPORT
|
||
|
VER_INFO_EXPORT( demo0_obj, "$Revision: 1.1 $", "$Name: $", __FILE__, "$Author: agibert $")
|
||
|
#endif
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
/*---------------------------------------------------------------------------------*/
|
||
|
/* Prototypes */
|
||
|
/*---------------------------------------------------------------------------------*/
|
||
|
|
||
|
void obj( void);
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
/*---------------------------------------------------------------------------------*/
|
||
|
/* */
|
||
|
/*---------------------------------------------------------------------------------*/
|
||
|
|
||
|
void obj( void)
|
||
|
{
|
||
|
printf( "demo0_obj: Hello !\n");
|
||
|
}
|