summaryrefslogtreecommitdiff
path: root/libutil/forkpty.c
AgeCommit message (Collapse)Author
2025-06-30openpty/forkpty: use const for termios and winsize argumentsMarcus Haehnel
The termios and winsize arguments are const as per the POSIX standard, and also uclibc and musl define them as such. Adapt the uclibc-ng definitions and declarations accordingly to improve compatibility. Signed-off-by: Marcus Haehnel <marcus.haehnel@kernkonzept.com>
2015-03-25utmp: favour POSIX utmpx over SVID utmpBernhard Reutner-Fischer
Note: _PATH_UTMPX == _PATH_UTMP and the utmp struct is identical to the utmpx struct so this only changes the external API entrypoints and NOT the underlying data source. This saves about 500b (~1300b from previously ~1950) while at it. Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
2012-11-18Replace FSF snail mail address with URLsMike Frysinger
This matches a similar change made to glibc. No functional changes here. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2008-05-20- remove old-style definitions. No object-code changes.Bernhard Reutner-Fischer
2006-01-16Convert to hidden_defPeter S. Mazinger
2005-11-23sync with glibcMike Frysinger
2005-11-21Use internal hidden versions of __login_tty/__openptyPeter S. Mazinger
2001-05-08Add in libutil, based on Cory Visi's variant of Michael Shmulevich's libutilEric Andersen
port. I have reworked the code quite a bit so that the stuff that is supposed to be in libc is in libc, and I added a bunch of missing stuff so the libutil interface matches that of glibc's libutil. The only caveat is that libutil/login.c is currently a stub. -Erik