summaryrefslogtreecommitdiff
path: root/src/basic/arphrd-list.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/basic/arphrd-list.c')
-rw-r--r--src/basic/arphrd-list.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/basic/arphrd-list.c b/src/basic/arphrd-list.c
index b9a9cb7ed4..7e5570ab9f 100644
--- a/src/basic/arphrd-list.c
+++ b/src/basic/arphrd-list.c
@@ -12,17 +12,6 @@ static const struct arphrd_name* lookup_arphrd(register const char *str, registe
#include "arphrd-from-name.h"
#include "arphrd-to-name.h"
-const char *arphrd_to_name(int id) {
-
- if (id <= 0)
- return NULL;
-
- if ((size_t) id >= ELEMENTSOF(arphrd_names))
- return NULL;
-
- return arphrd_names[id];
-}
-
int arphrd_from_name(const char *name) {
const struct arphrd_name *sc;
@@ -34,7 +23,3 @@ int arphrd_from_name(const char *name) {
return sc->id;
}
-
-int arphrd_max(void) {
- return ELEMENTSOF(arphrd_names);
-}