freebsd-ports/sysutils/symlinks/files/patch-aa
Andreas Klemm 691c30978d New port symlinks
symlinks is a "Symbolic link maintenance utility"

Scans directories for symbolic links, and identifies dangling,
relative, absolute, messy, lengthy and other_fs links.  Can optionally
change absolute links to relative within a given filesystem.
Recommended for use by anyone developing and/or maintaining a Linux
distribution or CD-ROM.
2000-05-27 11:09:47 +00:00

29 lines
570 B
Text

--- symlinks.c.orig Tue Oct 15 21:02:57 1996
+++ symlinks.c Sat May 27 09:34:00 2000
@@ -1,9 +1,6 @@
#include <unistd.h>
-#ifndef _POSIX_SOURCE
-#define _POSIX_SOURCE
-#endif
#include <stdio.h>
-#include <malloc.h>
+#include <stdlib.h>
#include <string.h>
#include <fcntl.h>
#include <sys/param.h>
@@ -294,7 +291,7 @@
exit(1);
}
-void main(int argc, char **argv)
+int main(int argc, char **argv)
{
static char path[PATH_MAX+2], cwd[PATH_MAX+2];
int dircount = 0;
@@ -342,5 +339,5 @@
}
if (dircount == 0)
usage_error();
- exit (0);
+ return (0);
}