X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=examples%2Fosltar%2Fosltar.c;h=840ddc3772b0f8bd559e52e717921a984e5e8af9;hb=758c28419b5b0876bee510f1fb4e01b75b2918f5;hp=e93bb0a65a0a41a154f8748fbfd8bacb6d70c472;hpb=45b166cb79a7ba0dad7b98ce175f694cdbcd5a3f;p=osl.git diff --git a/examples/osltar/osltar.c b/examples/osltar/osltar.c index e93bb0a..840ddc3 100644 --- a/examples/osltar/osltar.c +++ b/examples/osltar/osltar.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2009 Andre Noll + * Copyright (C) 2009 Andre Noll * * Licensed under the GPL v2. For licencing details see COPYING. */ @@ -34,13 +34,6 @@ enum osltar_columns { }; -/** - * \cond We want doxygen to create documentation for certain static functions. - * So we use __static__ for such functions. - */ -#define __static__ static -/** \endcond */ - /** * Compare two osl objects of string type. * @@ -53,7 +46,7 @@ enum osltar_columns { * * \sa strcmp(3), strncmp(3), osl_compare_func. */ -__static__ int string_compare(const struct osl_object *obj1, const struct osl_object *obj2) +static int string_compare(const struct osl_object *obj1, const struct osl_object *obj2) { const char *str1 = (const char *)obj1->data; const char *str2 = (const char *)obj2->data;