Deleted Added
full compact
bsd-misc.h (126274) bsd-misc.h (128456)
1/* $Id: bsd-misc.h,v 1.14 2004/02/17 05:49:55 djm Exp $ */
1/* $Id: bsd-misc.h,v 1.15 2004/03/08 11:59:03 dtucker Exp $ */
2
3/*
4 * Copyright (c) 1999-2004 Damien Miller <djm@mindrot.org>
5 *
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
9 *

--- 74 unchanged lines hidden (view full) ---

84#ifndef HAVE_TCGETPGRP
85pid_t tcgetpgrp(int);
86#endif
87
88#ifndef HAVE_TCSENDBREAK
89int tcsendbreak(int, int);
90#endif
91
2
3/*
4 * Copyright (c) 1999-2004 Damien Miller <djm@mindrot.org>
5 *
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
9 *

--- 74 unchanged lines hidden (view full) ---

84#ifndef HAVE_TCGETPGRP
85pid_t tcgetpgrp(int);
86#endif
87
88#ifndef HAVE_TCSENDBREAK
89int tcsendbreak(int, int);
90#endif
91
92#ifndef HAVE_UNSETENV
93void unsetenv(const char *);
94#endif
95
92/* wrapper for signal interface */
93typedef void (*mysig_t)(int);
94mysig_t mysignal(int sig, mysig_t act);
95
96#define signal(a,b) mysignal(a,b)
97
98#endif /* _BSD_MISC_H */
96/* wrapper for signal interface */
97typedef void (*mysig_t)(int);
98mysig_t mysignal(int sig, mysig_t act);
99
100#define signal(a,b) mysignal(a,b)
101
102#endif /* _BSD_MISC_H */