commit | a7b36638c6f0a31b8b0d5ac57ac831af9c1a7261 | [log] [tgz] |
---|---|---|
author | Denton Gentry <dgentry@google.com> | Sun Jun 12 05:24:09 2011 -0700 |
committer | Denton Gentry <dgentry@google.com> | Sun Jun 12 05:24:09 2011 -0700 |
tree | 775c05514e99fb8fa8689dfaa91ba4b544dec048 | |
parent | c60b92c298cad127821d631609a3eabf9d717768 [diff] |
Ubuntu doesn't have a <sys/limit.h>, just <limits.h>. It looks like <limits.h> will work for Android as well.
diff --git a/mkdir.c b/mkdir.c index 656970a..5b4ac09 100644 --- a/mkdir.c +++ b/mkdir.c
@@ -2,7 +2,7 @@ #include <unistd.h> #include <string.h> #include <errno.h> -#include <sys/limits.h> +#include <limits.h> #include <sys/stat.h> static int usage()