aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-10-25 02:22:13 +0000
committerlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-10-25 02:22:13 +0000
commit4b6e50b22d568ff66fd65214aeb225599ceca667 (patch)
treea2d7fd863e97132c48a1de1e5337aff374e91e3d
parent85730af2d6230680c48f5f686405ed26e651de3c (diff)
downloadbusybox-w32-4b6e50b22d568ff66fd65214aeb225599ceca667.tar.gz
busybox-w32-4b6e50b22d568ff66fd65214aeb225599ceca667.tar.bz2
busybox-w32-4b6e50b22d568ff66fd65214aeb225599ceca667.zip
Shaun Jackman noted that limits.h defines path_max and isn't included from
find_root_device.c. (We #include it in busybox.h but not libbb.h, it seems. Someday, someone's going to have to clarify for me the difference between those two...) git-svn-id: svn://busybox.net/trunk/busybox@11913 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--libbb/find_root_device.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libbb/find_root_device.c b/libbb/find_root_device.c
index 7ff65bb57..dfe0cfa7b 100644
--- a/libbb/find_root_device.c
+++ b/libbb/find_root_device.c
@@ -19,6 +19,7 @@
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */ 20 */
21 21
22#include <limits.h>
22#include <stdio.h> 23#include <stdio.h>
23#include <string.h> 24#include <string.h>
24#include <dirent.h> 25#include <dirent.h>