diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2006-03-31 19:41:45 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2006-03-31 19:41:45 +0000 |
commit | 86839acd0cfd4b7a6bdb720b8ca0fe5ee562e25e (patch) | |
tree | 268cf9e0883a4d3e59e2810d50d9d8c2719c9929 /lib/libc | |
parent | 4295dde08406ad0ff6b450e8ecf05984f1c8c437 (diff) |
No longer need limits.h
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/gen/nftw.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libc/gen/nftw.c b/lib/libc/gen/nftw.c index e4d1a559b3d..f5b43952d04 100644 --- a/lib/libc/gen/nftw.c +++ b/lib/libc/gen/nftw.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nftw.c,v 1.6 2006/03/31 19:37:32 millert Exp $ */ +/* $OpenBSD: nftw.c,v 1.7 2006/03/31 19:41:44 millert Exp $ */ /* * Copyright (c) 2003, 2004 Todd C. Miller <Todd.Miller@courtesan.com> @@ -25,7 +25,6 @@ #include <errno.h> #include <fts.h> #include <ftw.h> -#include <limits.h> int nftw(const char *path, int (*fn)(const char *, const struct stat *, int, |