X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fgl_array_oset.c;h=94f506ff2e13f0c73f054685659159c4286a5b77;hb=fa1db0dd22768f09a507674a30beb5b8a87bb35f;hp=0ae7fb413f73bcd36f8a51bd7e0080f5c1f8cc91;hpb=1602f0afed21be664fcf5c42d59db07cc22c56d6;p=gnulib.git diff --git a/lib/gl_array_oset.c b/lib/gl_array_oset.c index 0ae7fb413..94f506ff2 100644 --- a/lib/gl_array_oset.c +++ b/lib/gl_array_oset.c @@ -1,5 +1,5 @@ /* Ordered set data type implemented by an array. - Copyright (C) 2006-2007, 2009-2012 Free Software Foundation, Inc. + Copyright (C) 2006-2007, 2009-2013 Free Software Foundation, Inc. Written by Bruno Haible , 2006. This program is free software: you can redistribute it and/or modify @@ -184,7 +184,7 @@ grow (gl_oset_t set) /* Add the given element ELT at the given position, 0 <= position <= gl_oset_size (set). Return 1 upon success, -1 upon out-of-memory. */ -static inline int +static int gl_array_nx_add_at (gl_oset_t set, size_t position, const void *elt) { size_t count = set->count; @@ -204,7 +204,7 @@ gl_array_nx_add_at (gl_oset_t set, size_t position, const void *elt) /* Remove the element at the given position, 0 <= position < gl_oset_size (set). */ -static inline void +static void gl_array_remove_at (gl_oset_t set, size_t position) { size_t count = set->count;