summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2005-07-26 14:40:41 +0000
committerRussell Bryant <russell@russellbryant.com>2005-07-26 14:40:41 +0000
commita657d3a7fa3d5c140f31b2f627fb7e8f40ce7d5b (patch)
tree4d21c7f17ce1367c129e922f05a892ac40b5eda9
parent4df19fa1c25325e4f6fd2475054f17d618cd7e6a (diff)
fix build issue for FreeBSD (bug #4802)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6221 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rwxr-xr-xchannels/chan_modem.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/channels/chan_modem.c b/channels/chan_modem.c
index 4a93f35d0..f861bfb7c 100755
--- a/channels/chan_modem.c
+++ b/channels/chan_modem.c
@@ -12,15 +12,14 @@
*/
#include <stdio.h>
-#include <string.h>
-#include <ctype.h>
#include <stdlib.h>
-#include <unistd.h>
-#include <sys/socket.h>
+#include <ctype.h>
+#include <string.h>
#include <sys/time.h>
#include <errno.h>
#include <netinet/in.h>
#include <arpa/inet.h>
+#include <sys/socket.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <sys/termios.h>