diff options
| author | Juli Mallett <jmallett@FreeBSD.org> | 2002-05-03 14:50:31 +0000 |
|---|---|---|
| committer | Juli Mallett <jmallett@FreeBSD.org> | 2002-05-03 14:50:31 +0000 |
| commit | d7a43b245d47cec8718a3242ed58aac9b8a83e66 (patch) | |
| tree | 8dbc5ffc665535f2a789b092b7ac376ae2675feb /usr.bin | |
| parent | 90432ef88ddf6a842576faab9d2eb9cc98823ffa (diff) | |
Notes
Diffstat (limited to 'usr.bin')
| -rw-r--r-- | usr.bin/xargs/xargs.c | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/usr.bin/xargs/xargs.c b/usr.bin/xargs/xargs.c index 266977beca042..6a814172486bf 100644 --- a/usr.bin/xargs/xargs.c +++ b/usr.bin/xargs/xargs.c @@ -36,10 +36,19 @@ * $xMach: xargs.c,v 1.6 2002/02/23 05:27:47 tim Exp $ */ +#ifndef lint +static const char copyright[] = +"@(#) Copyright (c) 1990, 1993\n\ + The Regents of the University of California. All rights reserved.\n"; +#endif /* not lint */ + +#if 0 +#ifndef lint +static char sccsid[] = "@(#)xargs.c 8.1 (Berkeley) 6/6/93"; +#endif /* not lint */ +#endif + #include <sys/cdefs.h> -__COPYRIGHT("@(#) Copyright (c) 1990, 1993\n\ - The Regents of the University of California. All rights reserved.\n"); -__SCCSID("@(#)xargs.c 8.1 (Berkeley) 6/6/93"); __FBSDID("$FreeBSD$"); #include <sys/types.h> |
