mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
691c30978d
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.
30 lines
570 B
Plaintext
30 lines
570 B
Plaintext
--- 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);
|
|
}
|