diff options
author | vodz <vodz@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-09-20 10:02:36 +0000 |
---|---|---|
committer | vodz <vodz@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-09-20 10:02:36 +0000 |
commit | d4dd02c7e72906754c9afcf708fdb472ca4c685c (patch) | |
tree | 2bb5c78bd9c765ae72303aa113ae08e4313cd53f | |
parent | 8abc5a0be1d149a13e3a14c9248c54c6f6a60a7f (diff) | |
download | busybox-w32-d4dd02c7e72906754c9afcf708fdb472ca4c685c.tar.gz busybox-w32-d4dd02c7e72906754c9afcf708fdb472ca4c685c.tar.bz2 busybox-w32-d4dd02c7e72906754c9afcf708fdb472ca4c685c.zip |
This is strange typically modern mistake. Learn please: stat(2) used sys/types.h and not reverse
git-svn-id: svn://busybox.net/trunk/busybox@11509 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libbb.h b/include/libbb.h index e767948d7..760019d82 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -27,8 +27,8 @@ | |||
27 | #include <stdio.h> | 27 | #include <stdio.h> |
28 | #include <stdlib.h> | 28 | #include <stdlib.h> |
29 | #include <stdarg.h> | 29 | #include <stdarg.h> |
30 | #include <sys/stat.h> | ||
31 | #include <sys/types.h> | 30 | #include <sys/types.h> |
31 | #include <sys/stat.h> | ||
32 | #include <termios.h> | 32 | #include <termios.h> |
33 | #include <stdint.h> | 33 | #include <stdint.h> |
34 | 34 | ||