From fc2b813f33aebe5ae79dce0a9b52316f6227941d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?= <grubba@grubba.org> Date: Sat, 4 Jul 1998 03:02:41 +0200 Subject: [PATCH] Fixed problem with _FILE_OFFSET_BITS. Rev: src/fd_control.c:1.9 --- src/fd_control.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/fd_control.c b/src/fd_control.c index b139da5884..4c6f38ab81 100644 --- a/src/fd_control.c +++ b/src/fd_control.c @@ -3,11 +3,6 @@ ||| Pike is distributed as GPL (General Public License) ||| See the files COPYING and DISCLAIMER for more information. \*/ -#include <sys/types.h> -#include <sys/ioctl.h> -#include <sys/socket.h> -#include "fd_control.h" - #ifndef TESTING #include "global.h" #include "error.h" @@ -15,6 +10,11 @@ #undef DEBUG #endif +#include <sys/types.h> +#include <sys/ioctl.h> +#include <sys/socket.h> +#include "fd_control.h" + #ifdef HAVE_FCNTL_H #include <fcntl.h> #endif -- GitLab