diff options
author | brian <brian@FreeBSD.org> | 2005-08-23 13:13:13 +0000 |
---|---|---|
committer | brian <brian@FreeBSD.org> | 2005-08-23 13:13:13 +0000 |
commit | 8cf3c8952235c756487d763a755ee223c358b12e (patch) | |
tree | 80bf5c714a9b025373c1208447301ba584bf64c4 /usr.bin/cmp/extern.h | |
parent | bd2eebc690fe6d505a3daa2d0ecfa9d2cf991d01 (diff) | |
download | FreeBSD-src-8cf3c8952235c756487d763a755ee223c358b12e.zip FreeBSD-src-8cf3c8952235c756487d763a755ee223c358b12e.tar.gz |
Add a -h option to tell cmp not to follow symbolic links.
MFC after: 3 weeks
Sponsored by: Sophos/ActiveState
Diffstat (limited to 'usr.bin/cmp/extern.h')
-rw-r--r-- | usr.bin/cmp/extern.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.bin/cmp/extern.h b/usr.bin/cmp/extern.h index 75afb2b..1dd1c82 100644 --- a/usr.bin/cmp/extern.h +++ b/usr.bin/cmp/extern.h @@ -40,6 +40,7 @@ #define DIFF_EXIT 1 #define ERR_EXIT 2 /* error exit code */ +void c_link(const char *, off_t, const char *, off_t); void c_regular(int, const char *, off_t, off_t, int, const char *, off_t, off_t); void c_special(int, const char *, off_t, int, const char *, off_t); void diffmsg(const char *, const char *, off_t, off_t); |