summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
1998-01-17-WallTodd C. Miller
1998-01-17Use _ti_get_screensize() from libtermlib to update screen size if changedTodd C. Miller
after a program is suspended. Define EXTERN_TERMINFO in curses.h. Update to ncurses-4.1-980103 and crank minor.
1998-01-17Add _ti_get_screensize(), like ncurses's _nc_get_screensize()Todd C. Miller
Crank major number since libcurses will depend on this.
1998-01-12Oops, missed a 0 vs. '\0'Todd C. Miller
1998-01-12typoTodd C. Miller
1998-01-12Based on some FreeBSD changes:Todd C. Miller
For *s*printf, set f._file to -1 like the comments in stdio.h say. Use '\0', not 0, where appropriate. Don't error out on size of '0' for v?snprintf().
1998-01-11Add gethostent(), as some LEGACY code wants it. If you write newTobias Weingartner
code, PLEASE don't use this. Currently only iterates through the local /etc/hosts file.
1998-01-06so_linger is in secondsTheo de Raadt
1998-01-02make {f,}chflags(.., -1) return EINVAL because -1 is VNOVAL; problem noted ↵Theo de Raadt
by provos
1998-01-02make mmap() return void *, add MAP_FAILEDTheo de Raadt
1997-12-30correct descriptionTheo de Raadt
1997-12-29s/NetBSD/OpenBSDkstailey
1997-12-29NUL not NULLTheo de Raadt
1997-12-27Correct mmap-related prototypesThorsten Lockert
1997-12-24Always give .Fn an argument, it will not default to the previous value.Thorsten Lockert
1997-12-24also need sys/stat.h; hubertfTheo de Raadt
1997-12-22add XPG4.2 lockf; kleinkTheo de Raadt
1997-12-19sprintf bye byeTheo de Raadt
1997-12-19gid_t is unsignedTheo de Raadt
1997-12-18handle long usernames more carefullyTheo de Raadt
1997-12-17Add in lots of MLINKSTodd C. Miller
1997-12-16OpenBSD tagsTodd C. Miller
1997-12-16In tgetstr(), check that the copyout parameter is not NULL or a pointerTodd C. Miller
to a NULL as required by XPG4.2.
1997-12-16tparm() now returns NULL for buffers that would be >= 256 (termcapTodd C. Miller
size limit). Also, make _tparm take a size argument. This isn't strictly necesary as we know the size of the buffer and this function is only used internally but this has the added benefit of making _tparm == GNU tparam if we ever want to export it as such. There are reported to be problems with emacs when native libtermlib has tparam() so we keep this private for now.
1997-12-16othe envariable is COLUMNS, not COLSTodd C. Miller
1997-12-15MAP_COPY|MAP_FILE; mrg. indent tooTheo de Raadt
1997-12-14ncurses-4.1-971213Todd C. Miller
1997-12-14ncurses-4.1-971213Todd C. Miller
1997-12-10pw -> rpcTobias Weingartner
1997-12-09Minor mdoc cleanup.Todd C. Miller
1997-12-09make struct statfs reflect reality.Todd C. Miller
1997-12-09Make reset_prog_mode() and reset_shell_mode() in libtermlib weakTodd C. Miller
symbols so that they get overridden by the ones in libcurses. This is rather gross but the curses versions are tightly coupled to naughty bits private to libcurses. This allows reset_prog_mode() and reset_shell_mode() to operate properly both with an without libcurses linked in.
1997-12-06#ifdef out call to _nc_update_screensizeTodd C. Miller
1997-12-033X -> 3Todd C. Miller
1997-12-033X-> 3Todd C. Miller
1997-12-033X -> 3Todd C. Miller
1997-12-03Merge of ncurses-4.1-971129Todd C. Miller
1997-12-03OpenBSD tagsTodd C. Miller
1997-12-03merge of ncurses-4.1-971129Todd C. Miller
1997-12-03Merge of ncurses-4.1-971129Todd C. Miller
1997-12-03merge of ncurses-4.1-971129Todd C. Miller
1997-12-02i failed to test compile this before commitingTheo de Raadt
1997-12-01buf oflow; bitbltTheo de Raadt
1997-12-01Fix typo, vnsprintf -> vsnprintf. Tsk tsk.Todd C. Miller
1997-11-302**8 is normally 256 and not 64, I should resign from applied math it seems.Niels Provos
1997-11-30kill bad .Os lineTheo de Raadt
1997-11-30Deal with realloc() failure in v?asprintf()Todd C. Miller
1997-11-29Build asprintf.c and vasprintf.cTodd C. Miller
1997-11-29Implement asprintf(3) and vasprintf(3) functions similar to theTodd C. Miller
ones in the glibc. Some man pages changes from FreeBSD (asprintf.c/vasprintf.c are not based on GNU or FreeBSD code).
1997-11-29Return -1, not EOF for size < 1. XPG4.2 specifies the return valueTodd C. Miller
should be < 1. While EOF is currently defined as -1 it is bad form to assume this.