diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2014-11-28 19:25:04 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2014-11-28 19:25:04 +0000 |
commit | f3882fa76ddcdaa97613e1e67f7474fc458740c9 (patch) | |
tree | 5cbf0a99c5e06753bd4a4a822680734e8fdcb046 /usr.bin/mandoc/tbl.c | |
parent | 4f5e6b637ff20b6aec6d9fc1d03f4e0ce2a49611 (diff) |
Add some missing OpenBSD RCS markers
and a few missing <sys/types.h> inclusions; no code change.
Diffstat (limited to 'usr.bin/mandoc/tbl.c')
-rw-r--r-- | usr.bin/mandoc/tbl.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/mandoc/tbl.c b/usr.bin/mandoc/tbl.c index 9159bdbc948..6d16d665050 100644 --- a/usr.bin/mandoc/tbl.c +++ b/usr.bin/mandoc/tbl.c @@ -1,4 +1,4 @@ -/* $Id: tbl.c,v 1.10 2014/04/20 16:44:44 schwarze Exp $ */ +/* $OpenBSD: tbl.c,v 1.11 2014/11/28 19:25:03 schwarze Exp $ */ /* * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2011 Ingo Schwarze <schwarze@openbsd.org> @@ -15,6 +15,8 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#include <sys/types.h> + #include <assert.h> #include <stdio.h> #include <stdlib.h> |