summaryrefslogtreecommitdiffstats
path: root/include/runetype.h
Commit message (Collapse)AuthorAgeFilesLines
* o Fix namespace scope issues in <ctype.h> by using the relatively newmike2002-09-061-25/+8
| | | | | | | | | | | | visibility primitives. o Implement _tolower() and _toupper() POSIX.1-2001 (XSI) macros in <ctype.h>. o Reduce pollution in <runetype.h> by removing typedefs and using implementation namespaced types. o Add a typedef in <rune.h> to compensate for <runetype.h> losing its typedefs. Reviewed by: bde
* o Merge <machine/ansi.h> and <machine/types.h> into a new headermike2002-08-211-10/+10
| | | | | | | | | | | | | | | | | | | | | called <machine/_types.h>. o <machine/ansi.h> will continue to live so it can define MD clock macros, which are only MD because of gratuitous differences between architectures. o Change all headers to make use of this. This mainly involves changing: #ifdef _BSD_FOO_T_ typedef _BSD_FOO_T_ foo_t; #undef _BSD_FOO_T_ #endif to: #ifndef _FOO_T_DECLARED typedef __foo_t foo_t; #define _FOO_T_DECLARED #endif Concept by: bde Reviewed by: jake, obrien
* Don't define wchar_t if we are a C++ compiler.obrien2002-07-091-0/+2
| | | | PR: 31864, 40084
* Fixed some style bugs in the removal of __P(()). Some function parameterbde2002-03-261-4/+2
| | | | lists were outdented to column 0.
* Breath deep and take __P out of the system include files.imp2002-03-231-2/+3
| | | | | | # This appears to not break X11, but I'm having problems compiling the # glide part of the server with or without this patch, so I can't tell # for sure.
* Fixed longstanding namespace convolution involving rune_t vs wchar_t.bde1996-05-011-5/+9
| | | | | | | | | | | If _ANSI_SOURCE or _POSIX_SOURCE is defined, then <ctype.h> had to be included before <stddef.h> or <stdlib.h> to get rune_t declared. Now rune_t is declared perfectly bogusly in all cases when <ctype.h> is included. This change breaks similar (but more convoluted) convolutions in the stddef.h in gcc distributions. Ports of gcc should avoid using the gcc headers.
* Fix sgetrune/sputrune arg type: was unsigned int instead of size_tache1996-04-181-2/+7
|
* BSD 4.4 Lite Include Sourcesrgrimes1994-05-241-0/+101
OpenPOWER on IntegriCloud