aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils.c
diff options
context:
space:
mode:
authorLukas Fleischer <calcurse@cryptocrack.de>2012-12-22 17:17:43 +0100
committerLukas Fleischer <calcurse@cryptocrack.de>2013-01-30 15:39:58 +0100
commitef961f49275ae4cee5d91959f5af5f13b9fdf965 (patch)
tree603a8b6ceb316318ece260600b0c9d27be937b37 /src/utils.c
parentefa3589f78f52d33800c2be004b1f80b0bc3aac1 (diff)
downloadcalcurse-ef961f49275ae4cee5d91959f5af5f13b9fdf965.tar.gz
calcurse-ef961f49275ae4cee5d91959f5af5f13b9fdf965.zip
Remove unused function mystrtol()
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src/utils.c')
-rw-r--r--src/utils.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/utils.c b/src/utils.c
index ba31418..0826f89 100644
--- a/src/utils.c
+++ b/src/utils.c
@@ -561,21 +561,6 @@ char *nowstr(void)
return buf;
}
-long mystrtol(const char *str)
-{
- char *ep;
- long lval;
-
- errno = 0;
- lval = strtol(str, &ep, 10);
- if (str[0] == '\0' || *ep != '\0')
- EXIT(_("could not convert string"));
- if (errno == ERANGE && (lval == LONG_MAX || lval == LONG_MIN))
- EXIT(_("out of range"));
-
- return lval;
-}
-
/* Print the given option value with appropriate color. */
void
print_bool_option_incolor(WINDOW * win, unsigned option, int pos_y, int pos_x)