summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--channels/sig_analog.c3
-rw-r--r--channels/sig_pri.c4
-rw-r--r--main/asterisk.c3
-rw-r--r--main/cdr.c3
-rw-r--r--main/channel.c3
-rw-r--r--main/loader.c3
-rw-r--r--main/logger.c3
7 files changed, 22 insertions, 0 deletions
diff --git a/channels/sig_analog.c b/channels/sig_analog.c
index e84bbc6f8..eef043676 100644
--- a/channels/sig_analog.c
+++ b/channels/sig_analog.c
@@ -46,6 +46,9 @@
#include "sig_analog.h"
+/*** DOCUMENTATION
+ ***/
+
/*! \note
* Define if you want to check the hook state for an FXO (FXS signalled) interface
* before dialing on it. Certain FXO interfaces always think they're out of
diff --git a/channels/sig_pri.c b/channels/sig_pri.c
index 248999073..f6d7b0867 100644
--- a/channels/sig_pri.c
+++ b/channels/sig_pri.c
@@ -56,6 +56,10 @@
#error please update libpri
#endif
+/*** DOCUMENTATION
+ ***/
+
+
/* define this to send PRI user-user information elements */
#undef SUPPORT_USERUSER
diff --git a/main/asterisk.c b/main/asterisk.c
index 0a801c1a6..08aaa5764 100644
--- a/main/asterisk.c
+++ b/main/asterisk.c
@@ -154,6 +154,9 @@ int daemon(int, int); /* defined in libresolv of all places */
#include "../defaults.h"
+/*** DOCUMENTATION
+ ***/
+
#ifndef AF_LOCAL
#define AF_LOCAL AF_UNIX
#define PF_LOCAL PF_UNIX
diff --git a/main/cdr.c b/main/cdr.c
index 295108d76..053c86b9e 100644
--- a/main/cdr.c
+++ b/main/cdr.c
@@ -55,6 +55,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
#include "asterisk/stringfields.h"
#include "asterisk/data.h"
+/*** DOCUMENTATION
+ ***/
+
/*! Default AMA flag for billing records (CDR's) */
int ast_default_amaflags = AST_CDR_DOCUMENTATION;
char ast_default_accountcode[AST_MAX_ACCOUNT_CODE];
diff --git a/main/channel.c b/main/channel.c
index 6b1f3063c..9abd9e7e0 100644
--- a/main/channel.c
+++ b/main/channel.c
@@ -73,6 +73,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
#include "asterisk/data.h"
#include "asterisk/channel_internal.h"
+/*** DOCUMENTATION
+ ***/
+
#ifdef HAVE_EPOLL
#include <sys/epoll.h>
#endif
diff --git a/main/loader.c b/main/loader.c
index b95213735..d71509219 100644
--- a/main/loader.c
+++ b/main/loader.c
@@ -60,6 +60,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
#include "asterisk/md5.h"
#include "asterisk/utils.h"
+/*** DOCUMENTATION
+ ***/
+
#ifndef RTLD_NOW
#define RTLD_NOW 0
#endif
diff --git a/main/logger.c b/main/logger.c
index 6d6227bfc..515e3447f 100644
--- a/main/logger.c
+++ b/main/logger.c
@@ -69,6 +69,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
# endif
#endif
+/*** DOCUMENTATION
+ ***/
+
static char dateformat[256] = "%b %e %T"; /* Original Asterisk Format */
static char queue_log_name[256] = QUEUELOG;