1
1

Some platforms (such as FreeBSD) need libutil.h included for openpty.

Thanks to Karol Mroz for pointing this out.

This commit was SVN r16163.
Этот коммит содержится в:
Tim Prins 2007-09-19 21:59:22 +00:00
родитель 0e131a54bf
Коммит e25bb7f187

Просмотреть файл

@ -22,6 +22,9 @@
#ifdef HAVE_UTIL_H
#include <util.h>
#endif
#ifdef HAVE_LIBUTIL_H
#include <libutil.h>
#endif
#ifdef HAVE_TERMIOS_H
# include <termios.h>
#else