summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/asterisk.h10
-rw-r--r--include/asterisk/compat.h10
2 files changed, 10 insertions, 10 deletions
diff --git a/include/asterisk.h b/include/asterisk.h
index cb8499c3c..2aa978511 100644
--- a/include/asterisk.h
+++ b/include/asterisk.h
@@ -162,4 +162,14 @@ int64_t ast_mark(int, int start1_stop0);
#define ast_mark(a, b) do { } while (0)
#endif /* LOW_MEMORY */
+/*! \brief
+ * Definition of various structures that many asterisk files need,
+ * but only because they need to know that the type exists.
+ *
+ */
+
+struct ast_channel;
+struct ast_frame;
+struct ast_module;
+
#endif /* _ASTERISK_H */
diff --git a/include/asterisk/compat.h b/include/asterisk/compat.h
index 8a3225a16..c6ee280f4 100644
--- a/include/asterisk/compat.h
+++ b/include/asterisk/compat.h
@@ -180,14 +180,4 @@ typedef unsigned int u_int32_t;
typedef unsigned long long uint64_t;
#endif
-/*! \brief
- * Definition of various structures that many asterisk files need,
- * but only because they need to know that the type exists.
- *
- * We can move them to a different global header if necessary.
- */
-struct ast_channel;
-struct ast_frame;
-struct ast_module;
-
#endif