summaryrefslogtreecommitdiff
path: root/lib/mlibc/tests/posix/if_indextoname.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/mlibc/tests/posix/if_indextoname.c')
-rw-r--r--lib/mlibc/tests/posix/if_indextoname.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/mlibc/tests/posix/if_indextoname.c b/lib/mlibc/tests/posix/if_indextoname.c
deleted file mode 100644
index 15dc12a..0000000
--- a/lib/mlibc/tests/posix/if_indextoname.c
+++ /dev/null
@@ -1,11 +0,0 @@
-#include <assert.h>
-#include <net/if.h>
-#include <stdio.h>
-
-int main() {
- char name[IF_NAMESIZE];
-
- assert(name == if_indextoname(1, name));
- printf("test: name '%s'\n", name);
- assert(1 == if_nametoindex(name));
-}