Author: tkreuzer
Date: Tue Oct 27 23:56:22 2009
New Revision: 43797
URL:
http://svn.reactos.org/svn/reactos?rev=43797&view=rev
Log:
Remove fail point support from swprintf, too. Yay boot!
Modified:
branches/ros-amd64-bringup/reactos/lib/rtl/swprintf.c
Modified: branches/ros-amd64-bringup/reactos/lib/rtl/swprintf.c
URL:
http://svn.reactos.org/svn/reactos/branches/ros-amd64-bringup/reactos/lib/r…
==============================================================================
--- branches/ros-amd64-bringup/reactos/lib/rtl/swprintf.c [iso-8859-1] (original)
+++ branches/ros-amd64-bringup/reactos/lib/rtl/swprintf.c [iso-8859-1] Tue Oct 27 23:56:22
2009
@@ -33,7 +33,7 @@
unsigned int exponent:11;
unsigned int sign:1;
} double_t;
-
+#if 0
static
__inline
int
@@ -62,7 +62,7 @@
x.__x = &__x;
return ( x.x->exponent == 0x7ff && ( x.x->mantissah != 0 ||
x.x->mantissal != 0 ));
}
-
+#endif
static
__inline
@@ -178,6 +178,7 @@
return buf;
}
+#if 0
static wchar_t *
numberf(wchar_t * buf, wchar_t * end, double num, int base, int size, int precision, int
type)
{
@@ -283,6 +284,7 @@
}
return buf;
}
+#endif
static wchar_t*
string(wchar_t* buf, wchar_t* end, const char* s, int len, int field_width, int
precision, int flags)
@@ -394,7 +396,7 @@
const char *s;
const wchar_t *sw;
const wchar_t *ss;
- double _double;
+// double _double;
int flags; /* flags to number() */
@@ -591,6 +593,7 @@
*ip = (str - buf);
}
continue;
+#if 0
/* float number formats - set up the flags and "break" */
case 'e':
case 'E':
@@ -633,7 +636,7 @@
}
continue;
-
+#endif
/* integer number formats - set up the flags and "break" */