diff options
author | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1997-03-03 19:08:44 +0000 |
---|---|---|
committer | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1997-03-03 19:08:44 +0000 |
commit | 787fa51745fb95eeb01962d519fd60073f503c0c (patch) | |
tree | 8338976f469ead8b064d407c7b2aa2f9963a44b3 /sys/arch/mvme88k/include/assert.h | |
parent | 031c14d03c6210d5b329ac3256dba53a0fb9135a (diff) |
This is a remove to get rid of the old mvme88k port which was incomplete
to replace it with a working version. The kernel compiles and works
at least. The new version will be imported shortly.
Diffstat (limited to 'sys/arch/mvme88k/include/assert.h')
-rw-r--r-- | sys/arch/mvme88k/include/assert.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/sys/arch/mvme88k/include/assert.h b/sys/arch/mvme88k/include/assert.h deleted file mode 100644 index c9e72557e77..00000000000 --- a/sys/arch/mvme88k/include/assert.h +++ /dev/null @@ -1,8 +0,0 @@ -#define assert(x) \ -({\ - if (!(x)) {\ - printf("assertion failure \"%s\" line %d file %s\n", \ - #x, __LINE__, __FILE__); \ - panic("assertion"); \ - } \ -}) |