Fix cdr.h ordering issue (bug #4401)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5789 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer 2005-05-30 14:30:47 +00:00
parent 04be319867
commit af9903eb05
1 changed files with 3 additions and 1 deletions

View File

@ -17,7 +17,6 @@
#ifndef _CDR_H
#define _CDR_H
#include "asterisk/channel.h"
#include <sys/time.h>
#define AST_CDR_FLAG_KEEP_VARS (1 << 0)
#define AST_CDR_FLAG_POSTED (1 << 1)
@ -37,6 +36,9 @@
#define AST_MAX_USER_FIELD 256
#define AST_MAX_ACCOUNT_CODE 20
/* Include channel.h after relevant declarations it will need */
#include "asterisk/channel.h"
struct ast_channel;
AST_LIST_HEAD(varshead,ast_var_t);