From 1756cea95b844f99ae583860ee022ed56cf09aad Mon Sep 17 00:00:00 2001 From: Swen Schillig Date: Fri, 12 Apr 2019 17:28:23 +0200 Subject: [PATCH] util: cleanup API change for strtoul(l) wrappers Signed-off-by: Swen Schillig Reviewed-by: Ralph Boehme Reviewed-by: Christof Schmitt --- lib/util/util.h | 5 ----- 1 file changed, 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 */ -- 2.47.3