diff options
author | Mark Murray <markm@FreeBSD.org> | 2001-12-02 23:52:47 +0000 |
---|---|---|
committer | Mark Murray <markm@FreeBSD.org> | 2001-12-02 23:52:47 +0000 |
commit | 92407069539e346b048ce639717ec3a5b2dd5eb4 (patch) | |
tree | 7612b258ca261619e11918975cc74cbc65c8f141 /usr.bin/column/column.c | |
parent | b9449db11703886b93086d8138b786a637a55da0 (diff) | |
download | src-92407069539e346b048ce639717ec3a5b2dd5eb4.tar.gz src-92407069539e346b048ce639717ec3a5b2dd5eb4.zip |
Notes
Diffstat (limited to 'usr.bin/column/column.c')
-rw-r--r-- | usr.bin/column/column.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/usr.bin/column/column.c b/usr.bin/column/column.c index 4a019044576f..21bff28d31ca 100644 --- a/usr.bin/column/column.c +++ b/usr.bin/column/column.c @@ -29,19 +29,21 @@ * 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. - * - * $FreeBSD$ */ +#include <sys/cdefs.h> + +__FBSDID("$FreeBSD$"); + #ifndef lint static const char copyright[] = "@(#) Copyright (c) 1989, 1993, 1994\n\ The Regents of the University of California. All rights reserved.\n"; -#endif /* not lint */ +#endif #ifndef lint static const char sccsid[] = "@(#)column.c 8.4 (Berkeley) 5/4/95"; -#endif /* not lint */ +#endif #include <sys/types.h> #include <sys/ioctl.h> |