summaryrefslogtreecommitdiff
path: root/ot_vector.c
diff options
context:
space:
mode:
Diffstat (limited to 'ot_vector.c')
-rw-r--r--ot_vector.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/ot_vector.c b/ot_vector.c
index 1cfa4df..2a6d1b3 100644
--- a/ot_vector.c
+++ b/ot_vector.c
@@ -1,5 +1,7 @@
1/* This software was written by Dirk Engling <erdgeist@erdgeist.org> 1/* This software was written by Dirk Engling <erdgeist@erdgeist.org>
2 It is considered beerware. Prost. Skol. Cheers or whatever. */ 2 It is considered beerware. Prost. Skol. Cheers or whatever.
3
4 $id$ */
3 5
4/* System */ 6/* System */
5#include <stdlib.h> 7#include <stdlib.h>
@@ -108,3 +110,5 @@ void vector_remove_torrent( ot_vector *vector, ot_torrent *match ) {
108 vector->data = realloc( vector->data, vector->space * sizeof( ot_torrent ) ); 110 vector->data = realloc( vector->data, vector->space * sizeof( ot_torrent ) );
109 } 111 }
110} 112}
113
114const char *g_version_vector_c = "$Source$: $Revision$\n";