Update of /cvsroot/openneo/openneo/firmware/include
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv9447
Modified Files:
stdlib.h
Log Message:
atof function
Index: stdlib.h
===================================================================
RCS file: /cvsroot/openneo/openneo/firmware/include/stdlib.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** stdlib.h 29 Oct 2003 14:12:27 -0000 1.1.1.1
--- stdlib.h 10 Oct 2006 23:44:59 -0000 1.2
***************
*** 34,37 ****
--- 34,39 ----
int rand(void);
+ int atof( const unsigned char *str, unsigned int *fractional );
+
#define abs(x) ((x)>0?(x):-(x))
|