Removed include/selectors.h.

diff --git a/dlls/kernel/global16.c b/dlls/kernel/global16.c
index 76641e5..8706471 100644
--- a/dlls/kernel/global16.c
+++ b/dlls/kernel/global16.c
@@ -41,9 +41,9 @@
 #include "ntstatus.h"
 #include "global.h"
 #include "toolhelp.h"
-#include "selectors.h"
 #include "miscemu.h"
 #include "stackframe.h"
+#include "kernel_private.h"
 #include "wine/debug.h"
 #include "winerror.h"
 
diff --git a/dlls/kernel/instr.c b/dlls/kernel/instr.c
index 35b0d3f..4fcff3a 100644
--- a/dlls/kernel/instr.c
+++ b/dlls/kernel/instr.c
@@ -28,7 +28,6 @@
 #include "excpt.h"
 #include "module.h"
 #include "miscemu.h"
-#include "selectors.h"
 #include "wine/debug.h"
 #include "kernel_private.h"
 #include "thread.h"
diff --git a/dlls/kernel/kernel_private.h b/dlls/kernel/kernel_private.h
index c53274e..b54d1e0 100644
--- a/dlls/kernel/kernel_private.h
+++ b/dlls/kernel/kernel_private.h
@@ -56,6 +56,12 @@
 extern DWORD INSTR_EmulateInstruction( EXCEPTION_RECORD *rec, CONTEXT86 *context );
 extern void INSTR_CallBuiltinHandler( CONTEXT86 *context, BYTE intnum );
 
+extern WORD SELECTOR_AllocBlock( const void *base, DWORD size, unsigned char flags );
+extern WORD SELECTOR_ReallocBlock( WORD sel, const void *base, DWORD size );
+extern void SELECTOR_FreeBlock( WORD sel );
+#define IS_SELECTOR_32BIT(sel) \
+   (wine_ldt_is_system(sel) || (wine_ldt_copy.flags[LOWORD(sel) >> 3] & WINE_LDT_FLAGS_32BIT))
+
 /* this structure is always located at offset 0 of the DGROUP segment */
 #include "pshpack1.h"
 typedef struct
diff --git a/dlls/kernel/local16.c b/dlls/kernel/local16.c
index 5015b31..adee4fd 100644
--- a/dlls/kernel/local16.c
+++ b/dlls/kernel/local16.c
@@ -39,7 +39,6 @@
 #include "global.h"
 #include "module.h"
 #include "stackframe.h"
-#include "selectors.h"
 #include "toolhelp.h"
 #include "kernel_private.h"
 #include "wine/debug.h"
diff --git a/dlls/kernel/selector.c b/dlls/kernel/selector.c
index 89b4ff0..cae4e56 100644
--- a/dlls/kernel/selector.c
+++ b/dlls/kernel/selector.c
@@ -26,9 +26,9 @@
 #include "winerror.h"
 #include "wine/winbase16.h"
 #include "miscemu.h"
-#include "selectors.h"
 #include "wine/server.h"
 #include "wine/debug.h"
+#include "kernel_private.h"
 #include "toolhelp.h"
 
 WINE_DEFAULT_DEBUG_CHANNEL(selector);
diff --git a/dlls/kernel/thunk.c b/dlls/kernel/thunk.c
index 88bf9ee..816be2e 100644
--- a/dlls/kernel/thunk.c
+++ b/dlls/kernel/thunk.c
@@ -42,9 +42,9 @@
 #include "wine/library.h"
 #include "flatthunk.h"
 #include "module.h"
-#include "selectors.h"
 #include "stackframe.h"
 #include "task.h"
+#include "kernel_private.h"
 
 WINE_DEFAULT_DEBUG_CHANNEL(thunk);
 
diff --git a/dlls/kernel/wowthunk.c b/dlls/kernel/wowthunk.c
index 9df980f..64e479f 100644
--- a/dlls/kernel/wowthunk.c
+++ b/dlls/kernel/wowthunk.c
@@ -35,7 +35,6 @@
 #include "file.h"
 #include "task.h"
 #include "miscemu.h"
-#include "selectors.h"
 #include "stackframe.h"
 #include "kernel_private.h"
 #include "wine/exception.h"
diff --git a/include/selectors.h b/include/selectors.h
deleted file mode 100644
index 9c8cd1a..0000000
--- a/include/selectors.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * Selector definitions
- *
- * Copyright 1995 Alexandre Julliard
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
- */
-
-#ifndef __WINE_SELECTORS_H
-#define __WINE_SELECTORS_H
-
-#include <windef.h>
-#include <wine/library.h>
-
-extern WORD SELECTOR_AllocBlock( const void *base, DWORD size, unsigned char flags );
-extern WORD SELECTOR_ReallocBlock( WORD sel, const void *base, DWORD size );
-extern void SELECTOR_FreeBlock( WORD sel );
-
-#define IS_SELECTOR_32BIT(sel) \
-   (wine_ldt_is_system(sel) || (wine_ldt_copy.flags[LOWORD(sel) >> 3] & WINE_LDT_FLAGS_32BIT))
-
-#endif /* __WINE_SELECTORS_H */