update for HEAD-2003091401
[reactos.git] / lib / msvcrt / misc / cpp.c
index 2f86892..fb1c98e 100644 (file)
@@ -4,8 +4,13 @@
  * PROJECT:     ReactOS C runtime
  * FILE:        cpp.c
  * PURPOSE:     C++ runtime
- * PROGRAMMERS: Ge van Geldorp (ge@gse.nl)
- * NOTES:       Copied from Wine and slightly adapter for ReactOS
+ * NOTES:       Copied from Wine and slightly adapted for ReactOS
+ *              This is a derivative work compiled of work written and
+ *              copyrighted by (at least):
+ *              Alexandre Juliard <juliard@winehq.org>
+ *              Patrik Stridvall <ps@leissner.se>
+ *              Dimitrie O. Paun <dpaun@rogers.com>
+ *              Jon Griffiths <jon_p_griffiths@yahoo.com>
  */
 
 #include <windows.h>
@@ -295,7 +300,7 @@ static void cxx_local_unwind( cxx_exception_frame* frame, cxx_function_descr *de
     {
         if (trylevel < 0 || trylevel >= descr->unwind_count)
         {
-            OutputDebugString( "invalid trylevel\n" );
+            OutputDebugString( "invalid trylevel\n" );
             _exit(1);
         }
         handler = descr->unwind_table[trylevel].handler;
@@ -461,7 +466,7 @@ static DWORD cxx_frame_handler( PEXCEPTION_RECORD rec, cxx_exception_frame* fram
 
     if (descr->magic != CXX_FRAME_MAGIC)
     {
-        OutputDebugString( "invalid frame magic\n" );
+        OutputDebugString( "invalid frame magic\n" );
         return ExceptionContinueSearch;
     }
     if (rec->ExceptionFlags & (EH_UNWINDING|EH_EXIT_UNWIND))