blob: 0c7043bed9ba7b3867703a49be6b76319f183a07 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
$FreeBSD$
--- libAfterBase/asvector.c.orig 2013-05-01 06:34:11.000000000 -0700
+++ libAfterBase/asvector.c 2014-04-12 12:22:48.000000000 -0700
@@ -126,7 +126,7 @@
/* finds index of the first element in the vector that is exactly matching specifyed
* data */
-inline size_t vector_find_data( ASVector *v, void *data )
+size_t vector_find_data( ASVector *v, void *data )
{
register int i ;
/* word copying is usually faster then raw memory copying */
@@ -170,7 +170,7 @@
return i;
}
-inline void vector_move_data_up( ASVector *v, int index, int offset, int length )
+void vector_move_data_up( ASVector *v, int index, int offset, int length )
{
register int i ;
/* word copying is usually faster then raw memory copying */
|