diff options
author | Nicolas Bacca | 2003-12-22 11:22:51 +0000 |
---|---|---|
committer | Nicolas Bacca | 2003-12-22 11:22:51 +0000 |
commit | a6fb0fd5538a3c04806772df051c0103206fad42 (patch) | |
tree | 5ead65e30f8b20ef2d85c61866895ad40b3b7958 /backends | |
parent | 4ae44e1e0442b7b4af4292fa1a88e6bd9df0e97b (diff) | |
download | scummvm-rg350-a6fb0fd5538a3c04806772df051c0103206fad42.tar.gz scummvm-rg350-a6fb0fd5538a3c04806772df051c0103206fad42.tar.bz2 scummvm-rg350-a6fb0fd5538a3c04806772df051c0103206fad42.zip |
Added abort
svn-id: r11850
Diffstat (limited to 'backends')
-rw-r--r-- | backends/wince/missing/assert.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/backends/wince/missing/assert.h b/backends/wince/missing/assert.h index 24bc74a642..d7a4a5fb40 100644 --- a/backends/wince/missing/assert.h +++ b/backends/wince/missing/assert.h @@ -4,3 +4,5 @@ #define assert(e) ((e) ? 0 : (error("Assertion failed " #e " (%s, %d)", __FILE__, __LINE__))) +#define abort() error("Abort (%s, %d)", __FILE__, __LINE__) + |