dbus/dbus-sysdeps-util-win.c: remove unused str*_s definitions (cherry picked from commit 373214317c33031547f3788cffed8a832142fc43)

This commit is contained in:
Tor Lillqvist 2009-04-22 16:16:53 +02:00 committed by Ralf Habacker
parent 8836d6c5bf
commit c366d25cf1

View file

@ -44,27 +44,6 @@
#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.
*