Skip to content
Snippets Groups Projects
Commit c94a095e authored by rswindell's avatar rswindell
Browse files

ultoa is not declared in all Win32 C libraries (MinGW for example).

parent f5224654
No related branches found
No related tags found
No related merge requests found
......@@ -83,7 +83,6 @@ extern "C" {
DLLEXPORT void sbbs_beep(int freq, int dur);
DLLEXPORT long filelength(int fd);
DLLEXPORT char* ultoa(ulong, char*, int radix);
DLLEXPORT char* strupr(char* str);
DLLEXPORT char* strlwr(char* str);
......@@ -111,6 +110,12 @@ extern "C" {
#define _chmod(p,f,a) _rtl_chmod(p,f,a) /* _chmod obsolete in 4.x */
#endif
#if !defined _MSC_VER && !defined __BORLANDC__
DLLEXPORT char* ultoa(ulong, char*, int radix);
#endif
/* General file system wrappers for all platforms and compilers */
DLLEXPORT BOOL fexist(char *filespec);
DLLEXPORT long flength(char *filename);
DLLEXPORT long fdate(char *filename);
......
......@@ -186,7 +186,7 @@ int sbbs_random(int n)
/* Return ASCII string representation of ulong */
/* There may be a native GNU C Library function to this... */
/****************************************************************************/
#ifdef __unix__
#if !defined _MSC_VER && !defined __BORLANDC__
char* ultoa(ulong val, char* str, int radix)
{
switch(radix) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment