ensure that needed headers are included for chmod() and mkdir() (bug #3937)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5366 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Kevin P. Fleming
2005-04-03 20:25:43 +00:00
parent 24a710bad2
commit 3c7c893e6e
3 changed files with 3 additions and 0 deletions

View File

@@ -24,6 +24,7 @@
#include <stdlib.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <dirent.h>
#include <ctype.h>
#include "../astconf.h"

View File

@@ -13,6 +13,7 @@
*/
#include <sys/types.h>
#include <sys/stat.h>
#include <asterisk/channel.h>
#include <asterisk/options.h>
#include <asterisk/module.h>

View File

@@ -51,6 +51,7 @@
#include <sys/resource.h>
#include <grp.h>
#include <pwd.h>
#include <sys/stat.h>
#if defined(__FreeBSD__) || defined( __NetBSD__ ) || defined(SOLARIS)
#include <netdb.h>