diff options
author | 2006-03-31 19:41:44 +0000 | |
---|---|---|
committer | 2006-03-31 19:41:44 +0000 | |
commit | 40d389dd156dc6f36e47f0d3ae986cb239ac8fa2 (patch) | |
tree | fdf9078a011962459ec32ca1f4f38f249156be9e | |
parent | nfds is not constrained by OPEN_MAX for nftw(), only ftw() (diff) | |
download | wireguard-openbsd-40d389dd156dc6f36e47f0d3ae986cb239ac8fa2.tar.xz wireguard-openbsd-40d389dd156dc6f36e47f0d3ae986cb239ac8fa2.zip |
No longer need limits.h
-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, |