Deleted Added
full compact
bsd-misc.h (240075) bsd-misc.h (248619)
1/* $Id: bsd-misc.h,v 1.21 2012/07/03 22:50:10 dtucker Exp $ */
1/* $Id: bsd-misc.h,v 1.23 2013/03/14 23:34:27 djm 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 *

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

75struct timespec {
76 time_t tv_sec;
77 long tv_nsec;
78};
79#endif
80int nanosleep(const struct timespec *, struct timespec *);
81#endif
82
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 *

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

75struct timespec {
76 time_t tv_sec;
77 long tv_nsec;
78};
79#endif
80int nanosleep(const struct timespec *, struct timespec *);
81#endif
82
83#ifndef HAVE_USLEEP
84int usleep(unsigned int useconds);
85#endif
86
83#ifndef HAVE_TCGETPGRP
84pid_t tcgetpgrp(int);
85#endif
86
87#ifndef HAVE_TCSENDBREAK
88int tcsendbreak(int, int);
89#endif
90

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

97mysig_t mysignal(int sig, mysig_t act);
98
99#define signal(a,b) mysignal(a,b)
100
101#ifndef HAVE_ISBLANK
102int isblank(int);
103#endif
104
87#ifndef HAVE_TCGETPGRP
88pid_t tcgetpgrp(int);
89#endif
90
91#ifndef HAVE_TCSENDBREAK
92int tcsendbreak(int, int);
93#endif
94

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

101mysig_t mysignal(int sig, mysig_t act);
102
103#define signal(a,b) mysignal(a,b)
104
105#ifndef HAVE_ISBLANK
106int isblank(int);
107#endif
108
109#ifndef HAVE_GETPGID
110pid_t getpgid(pid_t);
111#endif
112
105#endif /* _BSD_MISC_H */
113#endif /* _BSD_MISC_H */