a.out is more likely, so check for it first
authorderaadt <deraadt@openbsd.org>
Mon, 4 Dec 1995 14:23:19 +0000 (14:23 +0000)
committerderaadt <deraadt@openbsd.org>
Mon, 4 Dec 1995 14:23:19 +0000 (14:23 +0000)
lib/libc/gen/nlist.c

index 347982a..e3b3186 100644 (file)
@@ -270,15 +270,15 @@ __elf_fdnlist(fd, list)
 static struct nlist_handlers {
        int     (*fn) __P((int fd, struct nlist *list));
 } nlist_fn[] = {
+#ifdef DO_AOUT
+       { __aout_fdnlist },
+#endif
 #ifdef DO_ELF
        { __elf_fdnlist },
 #endif
 #ifdef DO_ECOFF
        { __ecoff_fdnlist },
 #endif
-#ifdef DO_AOUT
-       { __aout_fdnlist },
-#endif
 };
 
 __fdnlist(fd, list)