Update to 2.0.0 tree from current Fremantle build
[opencv] / apps / cvenv / EiC / stdClib / stdliblocal.h
diff --git a/apps/cvenv/EiC/stdClib/stdliblocal.h b/apps/cvenv/EiC/stdClib/stdliblocal.h
deleted file mode 100644 (file)
index 548510a..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef STDLIBLOCALH_
-#define STDLIBLOCALH_
-
-char * strrev(char *s);
-char *utoa(unsigned int n, char *s, int radix);
-char *itoa(int n, char *s, int radix);
-char *ultoa(unsigned long n, char *s, int radix);
-char *ltoa(long n, char *s, int radix);
-
-char *fftoa(double d, char *str, int p, char type, int trunc);
-
-int charout_(int c, char **buf);
-int charin_(char **buf);
-int charback_(int ch, char **buf);
-
-int strround(char *s,int len);
-
-
-#define setEp(P,sz)  (P).ep = (char*)(P).p + (sz)
-
-#define getptrarg(x,y)  y = arg(x,getargs(),ptr_t)
-#define checkEp(P,s)  if((char*)P.p + (s) > (char *)P.ep)\
-                             EiC_Mod_Error("Access beyond array\n");
-
-extern void EiC_Mod_Error(char *fmt, ...);
-
-#endif