#include <errno.h>
#include <winsock2.h> // WSA error codes
-#if defined __MINGW32__ || (defined _MSC_VER && _MSC_VER <= 1310)
-/* save string functions version
- using DBusString needs to much time because of uncommon api
-*/
-#define errno_t int
-
-errno_t strcat_s(char *dest, size_t size, char *src)
-{
- _dbus_assert(strlen(dest) + strlen(src) +1 <= size);
- strcat(dest,src);
- return 0;
-}
-
-errno_t strcpy_s(char *dest, size_t size, char *src)
-{
- _dbus_assert(strlen(src) +1 <= size);
- strcpy(dest,src);
- return 0;
-}
-#endif
-
/**
* Does the chdir, fork, setsid, etc. to become a daemon process.
*