From: <dan...@us...> - 2008-01-24 20:15:08
|
Revision: 1135 http://cegcc.svn.sourceforge.net/cegcc/?rev=1135&view=rev Author: dannybackx Date: 2008-01-24 12:14:46 -0800 (Thu, 24 Jan 2008) Log Message: ----------- Get rid of the private file which I didn't want to import, instead the missing definition should go in the mingw includes, see a proposal on the mailing list. Modified Paths: -------------- trunk/cegcc/test/exception/dialog1.c trunk/cegcc/test/exception/exrecord.c trunk/cegcc/test/exception/file.c trunk/cegcc/test/exception/stdio.c trunk/cegcc/test/exception/twohandlers.c Modified: trunk/cegcc/test/exception/dialog1.c =================================================================== --- trunk/cegcc/test/exception/dialog1.c 2008-01-24 18:43:47 UTC (rev 1134) +++ trunk/cegcc/test/exception/dialog1.c 2008-01-24 20:14:46 UTC (rev 1135) @@ -2,7 +2,7 @@ #include <stdio.h> #include <stdlib.h> -#include "myexcpt.h" +#include <excpt.h> void handler(struct _EXCEPTION_RECORD *ExceptionRecord, void *EstablisherFrame, Modified: trunk/cegcc/test/exception/exrecord.c =================================================================== --- trunk/cegcc/test/exception/exrecord.c 2008-01-24 18:43:47 UTC (rev 1134) +++ trunk/cegcc/test/exception/exrecord.c 2008-01-24 20:14:46 UTC (rev 1135) @@ -2,7 +2,7 @@ #include <stdio.h> #include <stdlib.h> -#include "myexcpt.h" +#include <excpt.h> wchar_t msg[256]; int i = 0; Modified: trunk/cegcc/test/exception/file.c =================================================================== --- trunk/cegcc/test/exception/file.c 2008-01-24 18:43:47 UTC (rev 1134) +++ trunk/cegcc/test/exception/file.c 2008-01-24 20:14:46 UTC (rev 1135) @@ -2,7 +2,7 @@ #include <stdio.h> #include <stdlib.h> -#include "myexcpt.h" +#include <excpt.h> HANDLE h = 0; Modified: trunk/cegcc/test/exception/stdio.c =================================================================== --- trunk/cegcc/test/exception/stdio.c 2008-01-24 18:43:47 UTC (rev 1134) +++ trunk/cegcc/test/exception/stdio.c 2008-01-24 20:14:46 UTC (rev 1135) @@ -2,7 +2,7 @@ #include <stdio.h> #include <stdlib.h> -#include "myexcpt.h" +#include <excpt.h> int i = 0; FILE *f = NULL; Modified: trunk/cegcc/test/exception/twohandlers.c =================================================================== --- trunk/cegcc/test/exception/twohandlers.c 2008-01-24 18:43:47 UTC (rev 1134) +++ trunk/cegcc/test/exception/twohandlers.c 2008-01-24 20:14:46 UTC (rev 1135) @@ -2,7 +2,7 @@ #include <stdio.h> #include <stdlib.h> -// #include "myexcpt.h" +// #include <excpt.h> struct _DISPATCHER_CONTEXT; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |