Commit 80c3954e3cf66efa907b8a8862632f56eeea9543

Guillem Jover 2009-05-25T06:23:01

Use the correct path when including a.out.h Reported-by: Aurélien Jarno <aurelien@aurel32.net>

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/include/nlist.h b/include/nlist.h
index 0f2fa20..84fbc33 100644
--- a/include/nlist.h
+++ b/include/nlist.h
@@ -28,7 +28,7 @@
 #define LIBBSD_NLIST_H
 
 #include <sys/cdefs.h>
-#include <sys/a.out.h>
+#include <a.out.h>
 
 __BEGIN_DECLS
 extern int nlist(const char *filename, struct nlist *list);