X-Git-Url: https://vcs.maemo.org/git/?a=blobdiff_plain;f=apps%2Fcvenv%2FEiC%2FstdClib%2Fstdarg.c;fp=apps%2Fcvenv%2FEiC%2FstdClib%2Fstdarg.c;h=0000000000000000000000000000000000000000;hb=e4c14cdbdf2fe805e79cd96ded236f57e7b89060;hp=769d4b3e8a9b71d30b02b7188d69ad2917418e5a;hpb=454138ff8a20f6edb9b65a910101403d8b520643;p=opencv diff --git a/apps/cvenv/EiC/stdClib/stdarg.c b/apps/cvenv/EiC/stdClib/stdarg.c deleted file mode 100644 index 769d4b3..0000000 --- a/apps/cvenv/EiC/stdClib/stdarg.c +++ /dev/null @@ -1,57 +0,0 @@ -/* stdarg.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_STDARG - -#include -#include "eic.h" -#include "stdliblocal.h" - - -/* STDARG.H STUFF */ - -val_t _StArT_Va(void) -{ - val_t v; - getptrarg(0,v.p); - v.p.ep = v.p.p; - v.p.sp = (char*)v.p.p - 256 * sizeof(val_t); - return v; -} - -val_t _get_AR_t_size(void) -{ - val_t v; - v.ival = sizeof(AR_t); - return v; -} - -#endif - - -/************************************************/ - -void module_stdarg() -{ -#ifndef NO_STDARG - - /* STDARG.H STUFF */ - EiC_add_builtinfunc("_get_AR_t_size",_get_AR_t_size); - EiC_add_builtinfunc("_StArT_Va",_StArT_Va); - -#endif -} - - - - - - - -