iostream: Move include of asterisk.h

The asterisk.h header file needs to be included first or else
some things go awry, such as:

implicit declaration of function 'vasprintf'

Change-Id: I981dc2a77a1ba791888e4f1726644d4656c0407c
This commit is contained in:
Joshua Colp 2016-11-28 13:36:18 +00:00
parent d9b24cce0a
commit e3dae763ee
1 changed files with 2 additions and 1 deletions

View File

@ -16,10 +16,11 @@
* at the top of the source tree.
*/
#include "asterisk.h"
#include <fcntl.h>
#include <stdarg.h>
#include "asterisk.h"
#include "asterisk/utils.h"
#include "asterisk/astobj2.h"
#include "asterisk/iostream.h"