summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSwen Schillig <swen@linux.ibm.com>2019-04-12 17:28:23 +0200
committerRalph Boehme <slow@samba.org>2019-06-30 11:32:18 +0000
commit1756cea95b844f99ae583860ee022ed56cf09aad (patch)
tree01a32d56a293e45c26df3640ac10376113a0bc45
parent3bc973c6022ee79f57459849bc5c104795897fde (diff)
downloadsamba-1756cea95b844f99ae583860ee022ed56cf09aad.tar.gz
util: cleanup API change for strtoul(l) wrappers
Signed-off-by: Swen Schillig <swen@linux.ibm.com> Reviewed-by: Ralph Boehme <slow@samba.org> Reviewed-by: Christof Schmitt <cs@samba.org>
-rw-r--r--lib/util/util.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/util/util.h b/lib/util/util.h
index d65d8c9ff24..c89f4807d5b 100644
--- a/lib/util/util.h
+++ b/lib/util/util.h
@@ -35,11 +35,6 @@ smb_strtoul(const char *nptr, char **endptr, int base, int *err, int flags);
unsigned long long int
smb_strtoull(const char *nptr, char **endptr, int base, int *err, int flags);
-#define strtoul_err(nptr, endptr, base, err) \
- smb_strtoul(nptr, endptr, base, err, SMB_STR_STANDARD)
-#define strtoull_err(nptr, endptr, base, err) \
- smb_strtoull(nptr, endptr, base, err, SMB_STR_STANDARD)
-
/**
* Write dump of binary data to a callback
*/