X-Git-Url: https://vcs.maemo.org/git/?a=blobdiff_plain;f=apps%2Fcvenv%2FEiC%2FstdClib%2Fassert.c;fp=apps%2Fcvenv%2FEiC%2FstdClib%2Fassert.c;h=0000000000000000000000000000000000000000;hb=e4c14cdbdf2fe805e79cd96ded236f57e7b89060;hp=b28be6864c7f3a03574179c12e2ae5c4a1b68b90;hpb=454138ff8a20f6edb9b65a910101403d8b520643;p=opencv diff --git a/apps/cvenv/EiC/stdClib/assert.c b/apps/cvenv/EiC/stdClib/assert.c deleted file mode 100644 index b28be68..0000000 --- a/apps/cvenv/EiC/stdClib/assert.c +++ /dev/null @@ -1,42 +0,0 @@ -/* assert.c - * - * (C) Copyright Dec 20 1998, Edmond J. Breen. - * ALL RIGHTS RESERVED. - * This code may be copied for personal, non-profit use only. - * - */ - -#ifndef NO_ASSERT -#include -#include - -#include "eic.h" -#include "stdliblocal.h" -/*#include "assert.h"*/ - - -/* ASSERT.H STUFF */ -val_t eic_assert() -{ - val_t v; - fputs(arg(0,getargs(),ptr_t).p, stderr); - fputs(" -- assert failed\n",stderr); - return v; -} -#endif -/******************************************************************/ -void module_assert(void) -{ -#ifndef NO_ASSERT - /* ASSERT.H STUFF */ - EiC_add_builtinfunc("_Assert",eic_assert); -#endif -} - - - - - - - -