diff options
author | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2005-09-20 10:02:36 +0000 |
---|---|---|
committer | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2005-09-20 10:02:36 +0000 |
commit | 7fe6520e75ca0a0765e3efc9b6468a39bcdc7d48 (patch) | |
tree | 2bb5c78bd9c765ae72303aa113ae08e4313cd53f /include | |
parent | 6d5aa4539a3e4c52dfe157f70d3c45e64b28033a (diff) | |
download | busybox-7fe6520e75ca0a0765e3efc9b6468a39bcdc7d48.tar.gz |
This is strange typically modern mistake. Learn please: stat(2) used sys/types.h and not reverse
Diffstat (limited to 'include')
-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 @@ #include <stdio.h> #include <stdlib.h> #include <stdarg.h> -#include <sys/stat.h> #include <sys/types.h> +#include <sys/stat.h> #include <termios.h> #include <stdint.h> |