* Modules/Debuggers/ProjectCenter/PTYView.m

Include right headers for openpty on OpenBSD

OK Fred



git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@36099 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Sebastian Reitenbach 2013-02-09 14:42:13 +00:00
parent b97769af80
commit b97e7068dc
2 changed files with 5 additions and 0 deletions

View file

@ -15,6 +15,8 @@
shutup some clang warnings
* Framework/PCProjectBrowser.m
NSInteger conversions
* Modules/Debuggers/ProjectCenter/PTYView.m
Include right headers for openpty on OpenBSD
2012-11-22 German Arias <german@xelalug.org>

View file

@ -34,6 +34,9 @@
#include <sys/ioctl.h>
#include <termios.h>
#include <libutil.h>
#elif defined (__OpenBSD__)
#include <termios.h>
#include <util.h>
#else
#include <sys/termios.h>
#endif