aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlessandro Iezzi <aiezzi@alessandroiezzi.it>2023-05-10 12:11:05 +0200
committerAlessandro Iezzi <aiezzi@alessandroiezzi.it>2023-05-10 12:11:05 +0200
commit8a0ecaab5582fbc54abd7efa84abb896cc295c10 (patch)
tree1d9ec290ea81a1e27869bb580a1cfd317d76e8be
parent95eeaa9f9c5ce5cacb566a9f47853fff324a5b10 (diff)
downloadutils-8a0ecaab5582fbc54abd7efa84abb896cc295c10.tar.gz
utils-8a0ecaab5582fbc54abd7efa84abb896cc295c10.zip
Remove version.h
-rw-r--r--src/utils.h4
-rw-r--r--src/version.h8
2 files changed, 2 insertions, 10 deletions
diff --git a/src/utils.h b/src/utils.h
index b89a6c2..e21dd2e 100644
--- a/src/utils.h
+++ b/src/utils.h
@@ -3,8 +3,6 @@
#ifndef __CUTILS_H__
#define __CUTILS_H__
-#include "version.h"
-
typedef struct list_item_t {
void *data;
struct list_item_t *next;
@@ -28,4 +26,6 @@ iterator_t clist_iterator (list_t *);
int clist_iterator_has_next(iterator_t);
void *clist_iterator_next (iterator_t *);
+char *cutils_version();
+
#endif /* __CUTILS_H__ */
diff --git a/src/version.h b/src/version.h
deleted file mode 100644
index 15ddd85..0000000
--- a/src/version.h
+++ /dev/null
@@ -1,8 +0,0 @@
-/* See LICENSE file for copyright and license details. */
-
-#ifndef _VERSION_H_
-#define _VERSION_H_
-
-char *utils_version();
-
-#endif /* _VERSION_H_ */