Author: dgorbachev
Date: Sun Jan 24 02:37:13 2010
New Revision: 45226
URL:
http://svn.reactos.org/svn/reactos?rev=45226&view=rev
Log:
Forgot ntdef.h
Modified:
trunk/reactos/include/ddk/ntdef.h
Modified: trunk/reactos/include/ddk/ntdef.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/ddk/ntdef.h?rev=45…
==============================================================================
--- trunk/reactos/include/ddk/ntdef.h [iso-8859-1] (original)
+++ trunk/reactos/include/ddk/ntdef.h [iso-8859-1] Sun Jan 24 02:37:13 2010
@@ -193,16 +193,8 @@
// Done the same way as in windef.h for now
#define DECLSPEC_IMPORT __declspec(dllimport)
-
-#ifndef DECLSPEC_NORETURN
-#if (_MSC_VER >= 1200) && !defined(MIDL_PASS)
-#define DECLSPEC_NORETURN __declspec(noreturn)
-#else
-/* On 4.5 we can use __builtin_unreachable instead of this hack */
-__attribute__ ((noreturn)) void exit(int s) {exit(s);}
-#define DECLSPEC_NORETURN __attribute__((noreturn))
-#endif
-#endif
+#define DECLSPEC_NORETURN __declspec(noreturn)
+
#ifndef DECLSPEC_ADDRSAFE
#if (_MSC_VER >= 1200) && (defined(_M_ALPHA) || defined(_M_AXP64))