summaryrefslogtreecommitdiff
path: root/tools/dbus-send.c
diff options
context:
space:
mode:
authorSimon McVittie <smcv@collabora.com>2022-07-19 20:42:51 +0100
committerSimon McVittie <smcv@collabora.com>2022-07-19 21:11:09 +0100
commit36038fb1263c64a58b439e43a19d9d164d366601 (patch)
treed049d0568300dc860a8bcf045fccf7141193e73e /tools/dbus-send.c
parent624efc0781411c3c7d46c2e33863b8c38fe4d464 (diff)
downloaddbus-36038fb1263c64a58b439e43a19d9d164d366601.tar.gz
Remove fallback implementation of strtoll(), strtoull()
We now require a (mostly-)C99 compiler, which guarantees the presence of these functions. Signed-off-by: Simon McVittie <smcv@collabora.com>
Diffstat (limited to 'tools/dbus-send.c')
-rw-r--r--tools/dbus-send.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/tools/dbus-send.c b/tools/dbus-send.c
index 86858c50..3063290f 100644
--- a/tools/dbus-send.c
+++ b/tools/dbus-send.c
@@ -27,18 +27,6 @@
#include <dbus/dbus.h>
#include "dbus/dbus-internals.h"
-#ifndef HAVE_STRTOLL
-#undef strtoll
-#define strtoll mystrtoll
-#include "strtoll.c"
-#endif
-
-#ifndef HAVE_STRTOULL
-#undef strtoull
-#define strtoull mystrtoull
-#include "strtoull.c"
-#endif
-
#ifdef DBUS_WINCE
#ifndef strdup
#define strdup _strdup