diff options
author | nectar <nectar@FreeBSD.org> | 2002-01-29 17:11:28 +0000 |
---|---|---|
committer | nectar <nectar@FreeBSD.org> | 2002-01-29 17:11:28 +0000 |
commit | 31c2c5362e2520bd064aff5d8b7dda9293e1a4f1 (patch) | |
tree | c6e64bf31acb0dd3508c0e91d620ba6966eb750c /contrib/diff | |
parent | 2eb20551ff09b47541926bdc3e1211b1df97fa3b (diff) | |
download | FreeBSD-src-31c2c5362e2520bd064aff5d8b7dda9293e1a4f1.zip FreeBSD-src-31c2c5362e2520bd064aff5d8b7dda9293e1a4f1.tar.gz |
FreeBSD 4.4 doesn't have __FBSDID. Do it the old-fashioned way instead.
Reported by: Steven Farmer <steve@geoenergycorp.com>
Pointy hat to: nectar
Diffstat (limited to 'contrib/diff')
-rw-r--r-- | contrib/diff/sdiff.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/contrib/diff/sdiff.c b/contrib/diff/sdiff.c index 5b5759e..08673d8 100644 --- a/contrib/diff/sdiff.c +++ b/contrib/diff/sdiff.c @@ -19,8 +19,10 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* GNU SDIFF was written by Thomas Lord. */ -#include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +#ifndef lint +static const char rcsid[] = +"$FreeBSD$"; +#endif #include "system.h" #include <stdio.h> |