-#if wxUSE_STD_IOSTREAM
-
-// input/output
-ostream& operator<< (ostream& o, const wxLongLongNative& ll)
-{
- char result[65];
-
- memset(result, 'A', 64);
-
- result[64] = '\0';
-
- for (int i = 0; i < 64; i++)
- {
- result[63 - i] = '0' + (char) ((ll.m_ll >> i) & 1);
- }
-
- return o << result;
-}
-
-#endif // wxUSE_STD_IOSTREAM
-