Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Remove the prototypes for dlopen and related functions. They don't | jdp | 1997-11-28 | 1 | -10/+1 | |
| | | | | | belong here. The standard place for them is <dlfcn.h>, and there is already another copy of the prototypes there. | |||||
* | Add Ids, from lite2. | charnier | 1997-11-24 | 3 | -3/+11 | |
| | ||||||
* | const correctness for dl*() | brian | 1997-11-22 | 1 | -8/+8 | |
| | ||||||
* | Remove sccsid, not present in Lite2. | charnier | 1997-11-20 | 3 | -14/+3 | |
| | ||||||
* | Add const to rcsid[] definition so that -Wall will not complain. | charnier | 1997-10-31 | 3 | -8/+17 | |
| | ||||||
* | Change usleep return type from void to int to match OpenGroup specs. | ache | 1997-10-22 | 1 | -1/+1 | |
| | ||||||
* | Declare the various 2-byte values in TFTP as being `unsigned short'. | joerg | 1997-10-19 | 1 | -3/+3 | |
| | | | | | | | | | | RFC 1350 isn't very explicit about this, but the use of signed integers doesn't seem to make sense. Should be in 2.2.5, but is probably too late to be verified completely. PR: bin/4502 Submitted by: Dirk Nehrling <nerle@pdv.de> via Lars Koeller | |||||
* | Reinsert telnet.h into the list of files installed into include/arpa/ | markm | 1997-10-03 | 1 | -2/+2 | |
| | | | | I suspect a commit of mine had this (bogusly). | |||||
* | Changes for KTH KerberosIV. | markm | 1997-09-28 | 1 | -2/+2 | |
| | | | | telent.h is installed from libtelnet, not the include dir. | |||||
* | Oops, fix typo in istype definition | ache | 1997-09-27 | 2 | -2/+2 | |
| | ||||||
* | 1) Bring '!!' back since we wan't overflow even a char | ache | 1997-09-27 | 2 | -34/+38 | |
| | | | | | | 2) Revive __maskrune, just return mask now 3) Express __istype via !!__maskrune 4) Use __maskrune in digittoint | |||||
* | Oops, wrong version of digittoint fix was commited, step back to v1.8 | ache | 1997-09-25 | 2 | -16/+12 | |
| | | | | | instead just remove '!!' to make digittoint() work and re-arrange things a little | |||||
* | Fix digittoint broken long ago | ache | 1997-09-25 | 2 | -28/+16 | |
| | | | | | Redesign to allow digittoint work for runes too __maskrune removed, __istype become a macro, __runeflags added | |||||
* | Bandaid for the build-breaking reference to _BSD_RUNE_T_. I'm not sure | peter | 1997-09-25 | 2 | -6/+6 | |
| | | | | that this is right, but the old reference defaintely was not. | |||||
* | Submitted by: Sin'ichiro MIYATANI / Phase One, Inc <siu@phaseone.co.jp> | julian | 1997-09-24 | 2 | -2/+20 | |
| | | | | | Basic support for the Shift JIS encoding of japanese. (and one tiny typo fixed in a comment) | |||||
* | Removed installhdrs target. It was an unnecessary complication. | bde | 1997-09-16 | 2 | -11/+4 | |
| | ||||||
* | SYSV has both <poll.h> and <sys/poll.h>. (poll.h merely #includes | peter | 1997-09-14 | 1 | -2/+2 | |
| | | | | | | sys/poll.h). Just provide a link, it's close enough. :-) In an ideal world the prototype for poll() would be in <poll.h> but some code seems to expect it in <sys/poll.h>, so we can't win there. | |||||
* | Add "options no_tld_query" to resolv.conf. | brian | 1997-09-01 | 1 | -1/+2 | |
| | | | | | | Mention the capability in resolver(5). Mention that RES_OPTIONS can be used in resolver(5). Discussed with: -hackers | |||||
* | Removed ifndef of AUTH_NONE. The conflict with login_cap.h was fixed | bde | 1997-08-21 | 1 | -3/+1 | |
| | | | | better by not defining AUTH_NONE in login_cap.h. | |||||
* | Don't traverse subdirectories twice for normal installs. | bde | 1997-08-21 | 1 | -1/+4 | |
| | ||||||
* | Fix and simplify installhdrs target. It didn't install the headers in | bde | 1997-08-21 | 1 | -7/+4 | |
| | | | | ${HFILES} and it's simpler to install the non-headers in ${XFILES}. | |||||
* | fix a problem with headers not being installed properly... basicly the | jmg | 1997-08-21 | 2 | -5/+10 | |
| | | | | | | | installhdrs target was not being propagated to the subdirs... also fix rpcsvc's Makefile to have a installhdrs target to install the headers.. | |||||
* | Prototypes for getsid() and getpgid(). Also, prefix type names in | peter | 1997-08-19 | 1 | -1/+3 | |
| | | | | setpgrp() prototype with _ as per style(9). | |||||
* | split beforeinstall hook up so that the header install stuff is reachable | peter | 1997-08-18 | 1 | -2/+4 | |
| | | | | without risking invoking ${SHARED}. | |||||
* | Make this compile with the -traditional cc flag. | steve | 1997-08-16 | 1 | -2/+2 | |
| | | | | | PR: misc/2189 Submitted by: Lars Koeller <Lars_Koeller@odie.physik2.uni-rostock.de> | |||||
* | Fix typo: "send" -> "end" | fenner | 1997-08-11 | 1 | -1/+1 | |
| | | | | | PR: bin/3474 Submitted by: graphix@iastate.edu (Kent Vander Velden) | |||||
* | Import strptime(3) into libc. We've got permission by Kevin Ruddy to | joerg | 1997-08-09 | 1 | -0/+1 | |
| | | | | | | | | modify the original `no modifications' copyright message, and i've included his mail into the source file. The common localization functions between strptime(3) and strftime(3) have been broken out into timelocal.[ch]. | |||||
* | Implement dlsym(RTLD_NEXT, symbol). | jdp | 1997-08-02 | 1 | -1/+3 | |
| | ||||||
* | Use relative symlinks so they work even when ${DESTDIR} is not empty. | asami | 1997-07-31 | 1 | -3/+3 | |
| | | | | Reviewed by: jkh, bde | |||||
* | kill the undead | peter | 1997-07-13 | 1 | -151/+0 | |
| | ||||||
* | merge in bind-4.9.6 changes (only effect is __res_send #define reverted) | peter | 1997-06-27 | 2 | -5/+5 | |
| | ||||||
* | Update histedit.h to match the new libedit. | msmith | 1997-06-25 | 1 | -8/+15 | |
| | | | | Obtained from: NetBSD | |||||
* | Add stringlist functions from NetBSD. (required for the new ftp(1) | msmith | 1997-06-25 | 2 | -4/+59 | |
| | | | | Obtained from: NetBSD | |||||
* | Move machine/types.h to non-standard section | ache | 1997-06-14 | 1 | -2/+3 | |
| | | | | | Change order of arc4* functions Pointed-by: bde | |||||
* | Add arc4random family declaration | ache | 1997-06-14 | 1 | -0/+5 | |
| | ||||||
* | Instead of copying fallback code over and over in each program, | ache | 1997-06-14 | 1 | -1/+1 | |
| | | | | | | implement (better) falback code inside srandomdev() itself. Change return type from int to void (binary compatibility surprisely achieved). Userland code will be changed soon. | |||||
* | Go to SHARED=copies by default. | jkh | 1997-06-05 | 1 | -5/+6 | |
| | | | | Agreed-upon by: lots-o-folks. | |||||
* | Undo small change I accidentally left in while testing (files were | wpaul | 1997-05-28 | 1 | -3/+2 | |
| | | | | | | installed with wrong ownerships). Pointed out by: bde | |||||
* | Add new files in include/rpc. | wpaul | 1997-05-28 | 1 | -2/+3 | |
| | ||||||
* | Resolve conflicts. | wpaul | 1997-05-28 | 12 | -20/+150 | |
| | ||||||
* | This commit was generated by cvs2svn to compensate for changes in r26209, | wpaul | 1997-05-28 | 5 | -0/+639 | |
| | | | | which included commits to RCS files with non-trunk default branches. | |||||
* | Resolve conflicts. | wpaul | 1997-05-28 | 15 | -60/+110 | |
| | ||||||
* | This commit was generated by cvs2svn to compensate for changes in r26206, | wpaul | 1997-05-28 | 11 | -0/+2307 | |
| | | | | which included commits to RCS files with non-trunk default branches. | |||||
* | Fill out the ELF header files to make them more or less complete. | jdp | 1997-05-21 | 3 | -2/+72 | |
| | | | | | Fix a macro name that was misspelled both in brandelf.c and imgact_elf.h. | |||||
* | fix missing close comment in login_cap additions | peter | 1997-05-18 | 1 | -2/+2 | |
| | ||||||
* | struct timespec needs to be useable with just <time.h>, but needs to not | peter | 1997-05-13 | 1 | -7/+27 | |
| | | | | | | conflict with the kernel visible one. Make the new stuff not visible if _ANSI_SOURCE or _POSIX_SOURCE is defined (!) because the new things are not part of the base 1003.1-1990 standard (or ansi). | |||||
* | remove stray forward declaration for struct timespec | peter | 1997-05-13 | 1 | -3/+0 | |
| | | | | Pointed out by: bde | |||||
* | Add clockid_t definition like in sys/types.h to allow time.h | ache | 1997-05-13 | 1 | -0/+5 | |
| | | | | to be included without sys/types.h, it fixes broken groff compilation | |||||
* | Oops, move clock_*() and nanosleep() to time.h | peter | 1997-05-12 | 2 | -4/+4 | |
| | | | | Submitted by: Peter Dufault <dufault@hda.com> | |||||
* | prototype clock_settime(), clock_gettime(), clock_getres(), nanosleep(). | peter | 1997-05-12 | 1 | -0/+7 | |
| |