summaryrefslogtreecommitdiff
path: root/src/version.c
diff options
context:
space:
mode:
authorAdam Schubert <feartohell@seznam.cz>2015-05-11 16:10:54 +0200
committerAdam Schubert <feartohell@seznam.cz>2015-05-11 16:10:54 +0200
commit1319c7265a156a2097ad2252dd01631b1610ee1f (patch)
tree9334ede860fb9a7c0edf9aa7490a53deb62861fb /src/version.c
parentd58d7d1bee73351a4dd7c6b8c61e847823f03a12 (diff)
downloadlibrsync-1319c7265a156a2097ad2252dd01631b1610ee1f.tar.gz
Move *.c *.h project files into src dir
Diffstat (limited to 'src/version.c')
-rw-r--r--src/version.c33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/version.c b/src/version.c
new file mode 100644
index 0000000..05dde7d
--- /dev/null
+++ b/src/version.c
@@ -0,0 +1,33 @@
+/*= -*- c-basic-offset: 4; indent-tabs-mode: nil; -*-
+ *
+ * librsync -- dynamic caching and delta update in HTTP
+ * $Id$
+ *
+ * Copyright (C) 2000, 2001 by Martin Pool <mbp@sourcefrog.net>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * as published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This program 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 Lesser General Public
+ * License along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+#include "config.h"
+
+#include <stdio.h>
+
+#include "librsync.h"
+
+
+/** \brief Library version string. */
+char const rs_librsync_version[] = (PACKAGE " " VERSION);
+
+