From b2cbb6a75dfc8ea70554192ea223c3bd5dd52ed8 Mon Sep 17 00:00:00 2001 From: kpfleming Date: Mon, 6 Jun 2005 20:27:51 +0000 Subject: remove experimental module version tags add per-file revision tags and 'show version files' CLI command git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5864 f38db490-d61c-443f-a65b-d21fe96a405b --- include/asterisk/linkedlists.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include/asterisk/linkedlists.h') diff --git a/include/asterisk/linkedlists.h b/include/asterisk/linkedlists.h index d90365920..9f5f216fd 100755 --- a/include/asterisk/linkedlists.h +++ b/include/asterisk/linkedlists.h @@ -66,14 +66,14 @@ struct name { \ Example usage: \code - static AST_LIST_HEAD_STATIC(entry_list, entry) entries; + static AST_LIST_HEAD_STATIC(entry_list, entry); \endcode - This would define \c struct \c entry_list, and declare an instance of it named - \a entries, all intended to hold a list of type \c struct \c entry. + This would define \c struct \c entry_list, intended to hold a list of + type \c struct \c entry. */ #define AST_LIST_HEAD_STATIC(name, type) \ -struct name { \ +struct name { \ struct type *first; \ ast_mutex_t lock; \ } name = { \ -- cgit v1.2.3