aboutsummaryrefslogtreecommitdiffstats
path: root/openbsd-compat/bsd-misc.h
diff options
context:
space:
mode:
Diffstat (limited to 'openbsd-compat/bsd-misc.h')
-rw-r--r--openbsd-compat/bsd-misc.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/openbsd-compat/bsd-misc.h b/openbsd-compat/bsd-misc.h
index 31d0d7c3..c040a2b3 100644
--- a/openbsd-compat/bsd-misc.h
+++ b/openbsd-compat/bsd-misc.h
@@ -43,10 +43,6 @@ int setegid(uid_t);
const char *strerror(int);
#endif
-#if !defined(HAVE_SETLINEBUF)
-#define setlinebuf(a) (setvbuf((a), NULL, _IOLBF, 0))
-#endif
-
#ifndef HAVE_STRUCT_TIMEVAL
struct timeval {
long tv_sec;
@@ -68,18 +64,6 @@ int nanosleep(const struct timespec *, struct timespec *);
int usleep(unsigned int useconds);
#endif
-#ifndef HAVE_TCGETPGRP
-pid_t tcgetpgrp(int);
-#endif
-
-#ifndef HAVE_TCSENDBREAK
-int tcsendbreak(int, int);
-#endif
-
-#ifndef HAVE_UNSETENV
-int unsetenv(const char *);
-#endif
-
/* wrapper for signal interface */
typedef void (*mysig_t)(int);
mysig_t mysignal(int sig, mysig_t act);