mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
aea575ce76
A Stand-Alone shell combining many common utilities. PR: 16309 Submitted by: Patrick Gardella <patrick@freebsd.org>
21 lines
355 B
Plaintext
21 lines
355 B
Plaintext
diff -NPru cmd_find.c.orig cmd_find.c
|
|
--- cmd_find.c.orig Tue Apr 20 00:48:45 1999
|
|
+++ cmd_find.c Sat Jan 22 23:47:12 2000
|
|
@@ -6,6 +6,8 @@
|
|
* The "find" built-in command.
|
|
*/
|
|
|
|
+#ifdef HAVE_FIND
|
|
+
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <dirent.h>
|
|
@@ -370,5 +372,7 @@
|
|
*/
|
|
return TRUE;
|
|
}
|
|
+
|
|
+#endif /* HAVE_FIND */
|
|
|
|
/* END CODE */
|