summaryrefslogtreecommitdiff
path: root/libbb/bb_xgetlarg.c
diff options
context:
space:
mode:
authorEric Andersen2003-03-07 17:43:32 +0000
committerEric Andersen2003-03-07 17:43:32 +0000
commit6067c08145a7c69b251e3ae002334bc4953f81c2 (patch)
tree42e980a4f409667c40894fa6fc4ece742c644729 /libbb/bb_xgetlarg.c
parent2afcbe436fcfee169fbbe95984134c0fac03e46d (diff)
downloadbusybox-6067c08145a7c69b251e3ae002334bc4953f81c2.zip
busybox-6067c08145a7c69b251e3ae002334bc4953f81c2.tar.gz
With nightmares of libbb ending up with 100 .c files starting
with "bb_" it seems best to rename this now and avoid starting an evil KDE style naming trend.
Diffstat (limited to 'libbb/bb_xgetlarg.c')
-rw-r--r--libbb/bb_xgetlarg.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/libbb/bb_xgetlarg.c b/libbb/bb_xgetlarg.c
deleted file mode 100644
index 598b0b3..0000000
--- a/libbb/bb_xgetlarg.c
+++ /dev/null
@@ -1,28 +0,0 @@
-/* vi: set sw=4 ts=4: */
-/*
- * Copyright (C) 2003 Erik Andersen <andersee@debian.org>
- */
-
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <getopt.h>
-#include <errno.h>
-#include <assert.h>
-
-#include "busybox.h"
-
-extern long bb_xgetlarg(char *arg, int base, long lower, long upper)
-{
- long result;
- char *endptr;
- int errno_save = errno;
-
- assert(arg!=NULL);
- errno = 0;
- result = strtol(arg, &endptr, base);
- if (errno != 0 || *endptr!='\0' || result < lower || result > upper)
- show_usage();
- errno = errno_save;
- return result;
-}