libver/demo/libdemo0_s.c
2003-01-20 00:18:09 +00:00

83 lines
3.4 KiB
C

/*---------------------------------------------------------------------------------*/
/* $RCSfile: libdemo0_s.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( libdemo0_s, "$Revision: 1.1 $", "$Name: $", __FILE__, "$Author: agibert $")
#endif
/*---------------------------------------------------------------------------------*/
/* Prototypes */
/*---------------------------------------------------------------------------------*/
void slib( void);
/*---------------------------------------------------------------------------------*/
/* */
/*---------------------------------------------------------------------------------*/
void slib( void)
{
printf( "demo0_slib: Hello !\n");
}