diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2011-04-27 16:10:29 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-06-15 14:00:43 +0200 |
commit | d5e6e79fb9b4d1fdb89c59765b691f6ce3218133 (patch) | |
tree | 206c49033e0658f15d3d347c143706c31f923f4e /libc/misc/fts/fts.c | |
parent | 9202677ac036e99edee0e31c99677346a609f2e0 (diff) |
fts.c: add a comment about wrong usage of _lfs_64.h
This file needs anyway some massage (style update), I'll leave the fix
to the committer.
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/misc/fts/fts.c')
-rw-r--r-- | libc/misc/fts/fts.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/misc/fts/fts.c b/libc/misc/fts/fts.c index deb8f4adc..442dbf954 100644 --- a/libc/misc/fts/fts.c +++ b/libc/misc/fts/fts.c @@ -38,6 +38,7 @@ #include <unistd.h> #ifdef __UCLIBC_HAS_LFS__ +/* this is wrong, either you include this header as first, or not at all */ # include <_lfs_64.h> #else # define stat64 stat |