diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2013-11-15 22:20:05 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2013-11-15 22:20:05 +0000 |
commit | d77db38a99c37922b14991741a09951af3b0c621 (patch) | |
tree | 644b057604244c23082f5a592a93f036f54a930d /sbin/lmccontrol | |
parent | dc67839142fd08f2b381632ad5f6519757336005 (diff) |
Include unistd.h as it is the standard location for getopt().
Diffstat (limited to 'sbin/lmccontrol')
-rw-r--r-- | sbin/lmccontrol/lmccontrol.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/lmccontrol/lmccontrol.c b/sbin/lmccontrol/lmccontrol.c index 4bfc24a0850..d4c3facb400 100644 --- a/sbin/lmccontrol/lmccontrol.c +++ b/sbin/lmccontrol/lmccontrol.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lmccontrol.c,v 1.9 2006/12/06 05:56:03 jcs Exp $ */ +/* $OpenBSD: lmccontrol.c,v 1.10 2013/11/15 22:20:04 millert Exp $ */ /*- * Copyright (c) 1997-1999 LAN Media Corporation (LMC) @@ -44,6 +44,7 @@ #include <err.h> #include <errno.h> #include <string.h> +#include <unistd.h> #include <sys/param.h> #include <sys/types.h> |