Move excpt.h out of include/msvcrt/ as it does not conflict with any
standard Unix header.

diff --git a/dlls/kernel/computername.c b/dlls/kernel/computername.c
index 1caef93..74a66cd 100644
--- a/dlls/kernel/computername.c
+++ b/dlls/kernel/computername.c
@@ -38,7 +38,7 @@
 #include "winternl.h"
 #include "wine/unicode.h"
 #include "wine/exception.h"
-#include "msvcrt/excpt.h"
+#include "excpt.h"
 #include "wine/debug.h"
 #include "file.h"
 
diff --git a/dlls/kernel/console.c b/dlls/kernel/console.c
index 934476b..3725e74 100644
--- a/dlls/kernel/console.c
+++ b/dlls/kernel/console.c
@@ -46,7 +46,7 @@
 #include "wine/exception.h"
 #include "wine/unicode.h"
 #include "wine/debug.h"
-#include "msvcrt/excpt.h"
+#include "excpt.h"
 #include "console_private.h"
 
 WINE_DEFAULT_DEBUG_CHANNEL(console);
diff --git a/dlls/msvcrt/cppexcept.c b/dlls/msvcrt/cppexcept.c
index 23075cc..851e5f1 100644
--- a/dlls/msvcrt/cppexcept.c
+++ b/dlls/msvcrt/cppexcept.c
@@ -29,7 +29,7 @@
 #include "winternl.h"
 #include "msvcrt.h"
 #include "wine/exception.h"
-#include "msvcrt/excpt.h"
+#include "excpt.h"
 #include "wine/debug.h"
 
 WINE_DEFAULT_DEBUG_CHANNEL(seh);
diff --git a/dlls/msvcrt/except.c b/dlls/msvcrt/except.c
index cbca766..56adaf8 100644
--- a/dlls/msvcrt/except.c
+++ b/dlls/msvcrt/except.c
@@ -34,7 +34,7 @@
 #include "msvcrt.h"
 
 #include "msvcrt/setjmp.h"
-#include "msvcrt/excpt.h"
+#include "excpt.h"
 
 
 #include "wine/debug.h"
diff --git a/dlls/ntdll/debugtools.c b/dlls/ntdll/debugtools.c
index ca34cfb..f309d33 100644
--- a/dlls/ntdll/debugtools.c
+++ b/dlls/ntdll/debugtools.c
@@ -41,7 +41,7 @@
 #include "winbase.h"
 #include "winnt.h"
 #include "winternl.h"
-#include "msvcrt/excpt.h"
+#include "excpt.h"
 
 WINE_DECLARE_DEBUG_CHANNEL(tid);
 
diff --git a/dlls/ntdll/exception.c b/dlls/ntdll/exception.c
index 5a9d859..048a398 100644
--- a/dlls/ntdll/exception.c
+++ b/dlls/ntdll/exception.c
@@ -33,7 +33,7 @@
 #include "miscemu.h"
 #include "wine/server.h"
 #include "wine/debug.h"
-#include "msvcrt/excpt.h"
+#include "excpt.h"
 
 WINE_DEFAULT_DEBUG_CHANNEL(seh);
 
diff --git a/dlls/ntdll/loader.c b/dlls/ntdll/loader.c
index 5d04cda..26cfcce 100644
--- a/dlls/ntdll/loader.c
+++ b/dlls/ntdll/loader.c
@@ -22,7 +22,7 @@
 
 #include "module.h"
 #include "wine/exception.h"
-#include "msvcrt/excpt.h"
+#include "excpt.h"
 #include "wine/debug.h"
 
 WINE_DEFAULT_DEBUG_CHANNEL(ntdll);
diff --git a/dlls/ntdll/sec.c b/dlls/ntdll/sec.c
index 9b5f555..12b68d1 100644
--- a/dlls/ntdll/sec.c
+++ b/dlls/ntdll/sec.c
@@ -42,7 +42,7 @@
 #include "winternl.h"
 #include "winreg.h"
 #include "ntdll_misc.h"
-#include "msvcrt/excpt.h"
+#include "excpt.h"
 
 WINE_DEFAULT_DEBUG_CHANNEL(ntdll);
 
diff --git a/dlls/user/lstr.c b/dlls/user/lstr.c
index 5a9d03c..329cd4d 100644
--- a/dlls/user/lstr.c
+++ b/dlls/user/lstr.c
@@ -36,7 +36,7 @@
 #include "wine/winbase16.h"
 #include "wine/winuser16.h"
 
-#include "msvcrt/excpt.h"
+#include "excpt.h"
 
 #include "wine/debug.h"
 
diff --git a/dlls/winedos/dosvm.c b/dlls/winedos/dosvm.c
index 46524d2..3980c15 100644
--- a/dlls/winedos/dosvm.c
+++ b/dlls/winedos/dosvm.c
@@ -52,7 +52,7 @@
 #include "dosvm.h"
 #include "stackframe.h"
 #include "wine/debug.h"
-#include "msvcrt/excpt.h"
+#include "excpt.h"
 
 WINE_DEFAULT_DEBUG_CHANNEL(int);
 WINE_DECLARE_DEBUG_CHANNEL(module);
diff --git a/dlls/wininet/internet.c b/dlls/wininet/internet.c
index c3c1758..2be5f76 100644
--- a/dlls/wininet/internet.c
+++ b/dlls/wininet/internet.c
@@ -54,7 +54,7 @@
 #include "shlwapi.h"
 
 #include "wine/exception.h"
-#include "msvcrt/excpt.h"
+#include "excpt.h"
 
 #include "internet.h"
 
diff --git a/files/dos_fs.c b/files/dos_fs.c
index 73207a2..07061d7 100644
--- a/files/dos_fs.c
+++ b/files/dos_fs.c
@@ -52,7 +52,7 @@
 #include "msdos.h"
 #include "winternl.h"
 #include "wine/server.h"
-#include "msvcrt/excpt.h"
+#include "excpt.h"
 
 #include "smb.h"
 
diff --git a/include/Makefile.in b/include/Makefile.in
index 7ba644b..b7e3ca6 100644
--- a/include/Makefile.in
+++ b/include/Makefile.in
@@ -43,6 +43,7 @@
 	dsdriver.h \
 	dshow.h \
 	dsound.h \
+	excpt.h \
 	fci.h \
 	fdi.h \
 	guiddef.h \
@@ -170,7 +171,6 @@
 	msvcrt/dos.h \
 	msvcrt/eh.h \
 	msvcrt/errno.h \
-	msvcrt/excpt.h \
 	msvcrt/fcntl.h \
 	msvcrt/io.h \
 	msvcrt/locale.h \
diff --git a/include/msvcrt/excpt.h b/include/excpt.h
similarity index 100%
rename from include/msvcrt/excpt.h
rename to include/excpt.h
diff --git a/include/windows.h b/include/windows.h
index fc264c0..4862c1e 100644
--- a/include/windows.h
+++ b/include/windows.h
@@ -33,7 +33,7 @@
 #else /* RC_INVOKED && !NOWINRES */
 
 /* All the basic includes */
-#include "msvcrt/excpt.h"
+#include "excpt.h"
 #include "windef.h"
 #include "winbase.h"
 #include "wingdi.h"
diff --git a/loader/ne/module.c b/loader/ne/module.c
index 1b705e3..8d01f5b 100644
--- a/loader/ne/module.c
+++ b/loader/ne/module.c
@@ -42,7 +42,7 @@
 #include "snoop.h"
 #include "builtin16.h"
 #include "stackframe.h"
-#include "msvcrt/excpt.h"
+#include "excpt.h"
 #include "wine/exception.h"
 #include "wine/debug.h"
 
diff --git a/loader/resource.c b/loader/resource.c
index 27daad7..07ab9d5 100644
--- a/loader/resource.c
+++ b/loader/resource.c
@@ -42,7 +42,7 @@
 #include "wine/debug.h"
 #include "winerror.h"
 #include "winnls.h"
-#include "msvcrt/excpt.h"
+#include "excpt.h"
 
 WINE_DEFAULT_DEBUG_CHANNEL(resource);
 
diff --git a/memory/global.c b/memory/global.c
index deab646..b6f317c 100644
--- a/memory/global.c
+++ b/memory/global.c
@@ -47,7 +47,7 @@
 #include "module.h"
 #include "wine/debug.h"
 #include "winerror.h"
-#include "msvcrt/excpt.h"
+#include "excpt.h"
 
 WINE_DEFAULT_DEBUG_CHANNEL(global);
 
diff --git a/memory/string.c b/memory/string.c
index 0d756dc..0466aa0 100644
--- a/memory/string.c
+++ b/memory/string.c
@@ -29,7 +29,7 @@
 #include "wine/unicode.h"
 #include "winerror.h"
 #include "winnls.h"
-#include "msvcrt/excpt.h"
+#include "excpt.h"
 #include "wine/debug.h"
 
 WINE_DEFAULT_DEBUG_CHANNEL(string);
diff --git a/memory/virtual.c b/memory/virtual.c
index 38180d5..2519bb5 100644
--- a/memory/virtual.c
+++ b/memory/virtual.c
@@ -34,7 +34,7 @@
 #include "winternl.h"
 #include "winerror.h"
 #include "wine/exception.h"
-#include "msvcrt/excpt.h"
+#include "excpt.h"
 #include "wine/debug.h"
 
 WINE_DEFAULT_DEBUG_CHANNEL(virtual);
diff --git a/programs/winedbg/dbg.y b/programs/winedbg/dbg.y
index 5345070..078ecc1 100644
--- a/programs/winedbg/dbg.y
+++ b/programs/winedbg/dbg.y
@@ -32,7 +32,7 @@
 #include "wine/exception.h"
 #include "debugger.h"
 #include "expr.h"
-#include "msvcrt/excpt.h"
+#include "excpt.h"
 
 static void mode_command(int);
 int yylex(void);
diff --git a/programs/winedbg/winedbg.c b/programs/winedbg/winedbg.c
index 9a5db3b..3d0c074 100644
--- a/programs/winedbg/winedbg.c
+++ b/programs/winedbg/winedbg.c
@@ -31,7 +31,7 @@
 #include "winreg.h"
 #include "wingdi.h"
 #include "winuser.h"
-#include "msvcrt/excpt.h"
+#include "excpt.h"
 #include "wine/library.h"
 
 DBG_PROCESS*	DEBUG_CurrProcess = NULL;
diff --git a/relay32/snoop.c b/relay32/snoop.c
index 4070c1a..b7007f7 100644
--- a/relay32/snoop.c
+++ b/relay32/snoop.c
@@ -31,7 +31,7 @@
 #include "stackframe.h"
 #include "wine/debug.h"
 #include "wine/exception.h"
-#include "msvcrt/excpt.h"
+#include "excpt.h"
 
 WINE_DEFAULT_DEBUG_CHANNEL(snoop);
 
diff --git a/win32/except.c b/win32/except.c
index cd6293e..a785cc2 100644
--- a/win32/except.c
+++ b/win32/except.c
@@ -48,7 +48,7 @@
 #include "wine/library.h"
 #include "thread.h"
 #include "stackframe.h"
-#include "msvcrt/excpt.h"
+#include "excpt.h"
 #include "wine/server.h"
 #include "wine/unicode.h"
 #include "wine/debug.h"
diff --git a/windows/cursoricon.c b/windows/cursoricon.c
index d6b202b..ca8abd2 100644
--- a/windows/cursoricon.c
+++ b/windows/cursoricon.c
@@ -59,7 +59,7 @@
 #include "user.h"
 #include "message.h"
 #include "winerror.h"
-#include "msvcrt/excpt.h"
+#include "excpt.h"
 
 WINE_DEFAULT_DEBUG_CHANNEL(cursor);
 WINE_DECLARE_DEBUG_CHANNEL(icon);