Merge pull request #254 from t-b/tb_add_newer_bash
[msysgit.git] / include / excpt.h
blob39621a8f605ed827aa24cd02bde6b35ce75a8af9
1 #ifndef _EXCPT_H
2 #define _EXCPT_H
4 /* FIXME: This will make some code compile. The programs will most
5 likely crash when an exception is raised, but at least they will
6 compile. */
7 #ifdef __GNUC__
8 #define __try
9 #define __except(x) if (0) /* don't execute handler */
10 #define __finally
12 #define _try __try
13 #define _except __except
14 #define _finally __finally
15 #endif
17 #endif