summaryrefslogtreecommitdiff
path: root/openbsd-compat/bsd-misc.h
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2003-08-02 23:31:42 +1000
committerDarren Tucker <dtucker@zip.com.au>2003-08-02 23:31:42 +1000
commit2e9c9cf702d8e90809d901ec51358406be6f810a (patch)
tree175e32010d57d4aa3f3b818018fead17ef5aacfd /openbsd-compat/bsd-misc.h
parent06ef75bf0c2449ab4880f6ff40729497782e6e60 (diff)
- (dtucker) [openbsd-compat/bsd-misc.c openbsd-compat/bsd-misc.h]
Add a tcgetpgrp function.
Diffstat (limited to 'openbsd-compat/bsd-misc.h')
-rw-r--r--openbsd-compat/bsd-misc.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/openbsd-compat/bsd-misc.h b/openbsd-compat/bsd-misc.h
index 00e508cfc..03a1f3af0 100644
--- a/openbsd-compat/bsd-misc.h
+++ b/openbsd-compat/bsd-misc.h
@@ -22,7 +22,7 @@
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 */ 23 */
24 24
25/* $Id: bsd-misc.h,v 1.8 2003/05/18 14:13:39 djm Exp $ */ 25/* $Id: bsd-misc.h,v 1.9 2003/08/02 13:31:42 dtucker Exp $ */
26 26
27#ifndef _BSD_MISC_H 27#ifndef _BSD_MISC_H
28#define _BSD_MISC_H 28#define _BSD_MISC_H
@@ -89,4 +89,8 @@ struct timespec {
89int nanosleep(const struct timespec *, struct timespec *); 89int nanosleep(const struct timespec *, struct timespec *);
90#endif 90#endif
91 91
92#ifndef HAVE_TCGETPGRP
93pid_t tcgetpgrp(int);
94#endif /* HAVE_TCGETPGRP */
95
92#endif /* _BSD_MISC_H */ 96#endif /* _BSD_MISC_H */