diff options
author | Christian Weisgerber <naddy@cvs.openbsd.org> | 2013-12-17 17:56:00 +0000 |
---|---|---|
committer | Christian Weisgerber <naddy@cvs.openbsd.org> | 2013-12-17 17:56:00 +0000 |
commit | e4ab18e554f144075b48452bbdc33cde269d7f6a (patch) | |
tree | f056a32c1fa44d454f58d7d13cf56bd4c5f0aa63 | |
parent | a53cb7fdc46c7a180410eccb10b19e298187c2a7 (diff) |
fix build; from deraadt@
-rw-r--r-- | lib/libc/termios/tcgetsid.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/termios/tcgetsid.c b/lib/libc/termios/tcgetsid.c index 52278b0c6ba..a13b8748d8e 100644 --- a/lib/libc/termios/tcgetsid.c +++ b/lib/libc/termios/tcgetsid.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcgetsid.c,v 1.1 2013/12/17 16:31:36 millert Exp $ */ +/* $OpenBSD: tcgetsid.c,v 1.2 2013/12/17 17:55:59 naddy Exp $ */ /*- * Copyright (c) 1989, 1993 * The Regents of the University of California. All rights reserved. @@ -29,6 +29,7 @@ */ #include <sys/ioctl.h> +#include <sys/types.h> #include <termios.h> pid_t |