diff options
author | wsanchez <wsanchez@FreeBSD.org> | 2000-07-09 02:54:54 +0000 |
---|---|---|
committer | wsanchez <wsanchez@FreeBSD.org> | 2000-07-09 02:54:54 +0000 |
commit | 2114340468f38d534cfe2da4a94fc593d8e9faef (patch) | |
tree | 4c97bb781e46041f2e916df2a892e38c43e6e1e1 /usr.bin/make/targ.c | |
parent | 712e1316bf306af7da62bbcc7b8532c1b7d81e03 (diff) | |
download | FreeBSD-src-2114340468f38d534cfe2da4a94fc593d8e9faef.zip FreeBSD-src-2114340468f38d534cfe2da4a94fc593d8e9faef.tar.gz |
Use __RCSID()
Diffstat (limited to 'usr.bin/make/targ.c')
-rw-r--r-- | usr.bin/make/targ.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/usr.bin/make/targ.c b/usr.bin/make/targ.c index 6394ae2..26eb17e 100644 --- a/usr.bin/make/targ.c +++ b/usr.bin/make/targ.c @@ -34,15 +34,13 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. + * + * @(#)targ.c 8.2 (Berkeley) 3/19/94 */ #ifndef lint -#if 0 -static char sccsid[] = "@(#)targ.c 8.2 (Berkeley) 3/19/94"; -#else -static const char rcsid[] = - "$FreeBSD$"; -#endif +#include <sys/cdefs.h> +__RCSID("$FreeBSD$"); #endif /* not lint */ /*- |