00001 /* 00002 * Copyright (c) 2005-2012 by KoanLogic s.r.l. <http://www.koanlogic.com> 00003 * All rights reserved. 00004 * 00005 * This file is part of KLone, and as such it is subject to the license stated 00006 * in the LICENSE file which you have received as part of this distribution. 00007 * 00008 * $Id: version.c,v 1.7 2007/10/26 08:57:59 tho Exp $ 00009 */ 00010 00011 #include <stdio.h> 00012 #include <stdlib.h> 00013 #include <unistd.h> 00014 #include <klone/version.h> 00015 #include <u/libu.h> 00016 00030 const char *klone_version(void) 00031 { 00032 return KLONE_VERSION; 00033 } 00034