cgd
a4f95e1816
no more librpc
1993-10-08 01:33:33 +00:00
jtc
e09d2f42db
Use "testb %cl,%cl" instead of "cmpb $0,%cl".
...
This saves three cycles per character, and reduces the size of the
function by eight bytes (the loop is unrolled eight times).
Thanks to davidg for pointing this out.
1993-10-08 01:25:51 +00:00
cgd
909ad08f8c
there is no librpc any more
1993-10-08 00:51:12 +00:00
jtc
42cce25b89
Use machine dependant version of labs.[cs] if one is present.
...
If not one of the enumerated list of machines, use the C language
versions of abs, labs, and atof.
1993-10-08 00:08:12 +00:00
jtc
b3f9f8f6f4
Provide an assembly language version of labs().
...
Since ints and longs are both 32 bits on a i386, we could alias abs()
and labs() together as mycroft did with memmove()/memcpy(), but I'm
waiting on an interpretation ruling to see if it is legal.
1993-10-08 00:01:04 +00:00
jtc
b050bfde2c
Use _ASSERT_H_ guard macro so that <sys/cdefs.h> is only included once and
...
the __assert() helper function is declared once if <assert.h> is included
multiple times.
Don't support the _assert() macro, nothing uses it and it pollutes the
user's namespace.
1993-10-07 22:15:29 +00:00
jtc
68bc42722e
Add entries for x400 mail, pop-2 & pop-3, and the X Display Manager Control
...
Protocol.
1993-10-07 21:54:36 +00:00
brezak
4eae27f3eb
Whilst hacking the Net/2 version of finger to work on Solaris 2.2 (we
...
needed a finger on that platform which grokked the office/phone # GCOS
info), I decided to put mail status in (as the solaris version has
that).
The attached patch adds:
- manual page typos fixed: finger doesn't scan .forward, contrary to
what the man page says (and really shouldn't either, IMHO - that's
what telnet host SMTP & VRFY are for :)
- added a mail check (printed between login info and the project).
three different messages possible:
- if you have no mail:
No Mail.
- if you have mail, but there's no unread mail:
Mail last read DDD MMM ## HH:MM (TZ)
- if you have new mail:
New mail received DDD MMM ## HH:MM (TZ)
Unread since DDD MMM ## HH:MM (TZ)
- fixed the manual page.
lm@yallara.cs.rmit.OZ.AU (Luke Mewburn)
1993-10-07 19:58:28 +00:00
brezak
933a7b3ad8
Rand48 routines from martin@ntkupc1.tuwien.ac.at (Martin Birgmeier)
1993-10-07 19:53:35 +00:00
cgd
3ae2c70acd
sometimes we want a profiled libkern. i can't ever see wanting a
...
PIC one...
1993-10-07 19:40:36 +00:00
mycroft
b50f401d64
Clean up deleted files.
1993-10-07 19:28:50 +00:00
jtc
473c152a0a
Moved strerror.[c3] from libc/stdio to libc/string.
...
Since perror is not permitted to change strerror()'s static buffer, I have
changed both functions to pass their own buffers to the new library-internal
function _strerror() that actually does the error message string look up.
Split strerror manpage into strerror and perror manpages.
1993-10-07 19:27:50 +00:00
brezak
2a790909ba
Add socks service
1993-10-07 13:25:50 +00:00
cgd
cab8e2bdba
"There will be NO librpc tomorrow!"
1993-10-07 07:39:23 +00:00
mycroft
4d4f745b47
Clean up deleted files.
1993-10-07 07:33:02 +00:00
cgd
63d7b6778b
move the rpc code into libc
1993-10-07 07:29:33 +00:00
cgd
3fc63f6bb3
now that the rpc code lives in libc, we should install the man page
...
for /etc/rpc from here. the man page's header was changed to note
that hackers/source-browsers should look at the README and DISCLAIMER
in libc/rpc
1993-10-07 07:29:00 +00:00
cgd
d6ff5db170
converted to use gnu malloc, and depend on it correctly
1993-10-07 07:23:44 +00:00
cgd
4b30c543a0
always use libcrypt
1993-10-07 02:16:39 +00:00
cgd
20a8a9b665
always include libcrypt
1993-10-07 02:15:25 +00:00
cgd
f74961d747
LIBTERM pointed at nothing, but was meant to point to libtermcap.a...
1993-10-07 02:12:18 +00:00
cgd
d86859f644
print the warning exactly once per function per program invocation.
1993-10-07 01:43:14 +00:00
mycroft
a2d8842cae
Clean up deleted files.
1993-10-07 01:37:03 +00:00
cgd
eb29ed3995
always create libcrypt, and link with it where necessary. this will
...
make life with shared libraries happier. also, get dummy crypt out
of libc.
1993-10-07 01:36:21 +00:00
cgd
cf4f8c1089
always define LIBCRYPT
1993-10-07 01:35:30 +00:00
cgd
d415bba2d7
rm _pic libs on clean, too.
1993-10-07 01:34:07 +00:00
cgd
cd68b34ae6
fix from Thomas Eberhardt <thomas@mathematik.uni-Bremen.de>:
...
don't try to display the resident text size; we can't do that anymore
1993-10-07 00:45:59 +00:00
cgd
0b9f50897e
make an arch directory in libc, and move all machine dirs into it
1993-10-07 00:17:24 +00:00
cgd
13a840d756
generalize kernacc() to any protections in the function "kerncheckprot()",
...
and prototype it.
1993-10-06 23:38:19 +00:00
cgd
fa29c74cd0
fix the mmap of kmem somewhat, but it's still not perfect...
...
(or, at least, it crashes the machines in some situations where
i don't think it should...)
1993-10-06 23:37:09 +00:00
cgd
884cdaf2ca
use PROG=./bitstring_test as suggested by Andrew Wheadon for everything.
...
makes the "make" look strange, but it works.
1993-10-06 21:58:09 +00:00
cgd
c8670033f6
change the type of fread and fwrite to size_t. unistd.h declares
...
them as ssize_t, but we're using stdio.h...
1993-10-06 21:29:04 +00:00
cgd
74e4a61b3f
no pic libraries
1993-10-06 21:28:25 +00:00
cgd
d4435d2bd4
get rid of excess target line for machdep.o
1993-10-06 21:19:11 +00:00
cgd
04a70cace4
yes, we want a -d flag for 'install -d'...
1993-10-06 20:30:12 +00:00
jtc
916781f049
converted to use mandoc macroes.
1993-10-06 19:38:15 +00:00
jtc
104c7f4bf6
Got bored, converted to use mandoc macros.
1993-10-06 19:34:59 +00:00
jtc
c39233bfc4
Got bored, converted yet another manpage to use the -mandoc macroes.
1993-10-06 19:16:41 +00:00
jtc
50e825b111
Got bored, converted yet another manpage to -mandoc format
1993-10-06 19:07:02 +00:00
jtc
6212a186a0
cuserid() was removed by 1990's revision of 1003.1, and we never provided it
...
so don't define the L_cuserid constant.
1993-10-06 18:41:55 +00:00
pk
6dd02c67e8
Added .so to `.depend' (Thanks to Andrew Wheadon for poiting this out).
1993-10-06 17:54:01 +00:00
mycroft
004534e441
Add FASTLINKS.
1993-10-06 12:15:33 +00:00
mycroft
501c1b99ad
Add cy.
1993-10-06 12:14:31 +00:00
mycroft
8cc28d314c
Merge changes from trunk.
1993-10-06 12:09:35 +00:00
mycroft
e9b92335b0
Add DRQUNK and IOBASEUNK.
1993-10-06 12:09:25 +00:00
andrew
103f3ade85
Added cy driver manpage.
1993-10-06 09:45:31 +00:00
andrew
81a9642670
Added entry for Cyclades Cyclom-{4/8/16}Y multiport async serial board
...
driver.
1993-10-06 09:31:30 +00:00
andrew
e256404adc
Cyclades Cyclom-{4/8/16}Y multiport async serial board driver.
1993-10-06 09:30:16 +00:00
andrew
13a48b8263
Goes with the new cy driver.
1993-10-06 09:27:27 +00:00
cgd
a84055b552
use the ALIGN macro to align the stack, rather than rounding up
...
by a (char *). the former is safe, even on strange machines
(read: sparc).
1993-10-06 07:27:58 +00:00