Date: Thu, 22 Aug 2002 17:38:34 +1000 (EST) From: Bruce Evans <bde@zeta.org.au> To: Mike Barcroft <mike@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, <cvs-all@FreeBSD.org> Subject: Re: cvs commit: src/include ctype.h err.h grp.h inttypes.h monetary.h netdb.h pwd.h runetype.h search.h signal.h stddef.h stdio.h stdlib.h string.h strings.h time.h timeconv.h unistd.h vis Message-ID: <20020822173652.P2721-100000@gamplex.bde.org> In-Reply-To: <200208211620.g7LGK2SZ078421@freefall.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
On Wed, 21 Aug 2002, Mike Barcroft wrote: > mike 2002/08/21 09:20:02 PDT > > Modified files: > include ctype.h err.h grp.h inttypes.h monetary.h > netdb.h pwd.h runetype.h search.h > signal.h stddef.h stdio.h stdlib.h > string.h strings.h time.h timeconv.h > unistd.h vis.h wchar.h wctype.h > include/arpa inet.h > lib/libc/locale runetype.c tolower.c toupper.c > lib/libc/stdio local.h vasprintf.c vprintf.c vscanf.c > vsnprintf.c vsprintf.c vsscanf.c > lib/libdevinfo devinfo.h > lib/libkvm kvm.h > lib/libncurses Makefile > lib/libstand stand.h > sys/alpha/include ansi.h endian.h stdarg.h varargs.h > sys/arm/include ansi.h > sys/i386/include ansi.h endian.h stdarg.h varargs.h > sys/ia64/include ansi.h endian.h stdarg.h varargs.h > sys/netinet in.h > sys/netinet6 in6.h > sys/powerpc/include ansi.h endian.h stdarg.h varargs.h > sys/sparc64/include ansi.h endian.h stdarg.h varargs.h > sys/sys _timespec.h _types.h dirent.h sbuf.h > signal.h socket.h stat.h statvfs.h > stdint.h syslog.h systm.h times.h > timespec.h types.h un.h > sys/x86_64/include ansi.h endian.h stdarg.h > usr.sbin/ppp prompt.h > Added files: > sys/alpha/include _types.h > sys/arm/include _types.h > sys/i386/include _types.h > sys/ia64/include _types.h > sys/powerpc/include _types.h > sys/sparc64/include _types.h > sys/x86_64/include _types.h > Removed files: > sys/alpha/include types.h > sys/arm/include types.h > sys/i386/include types.h > sys/ia64/include types.h > sys/powerpc/include types.h > sys/sparc64/include types.h > sys/x86_64/include types.h > Log: > o Merge <machine/ansi.h> and <machine/types.h> into a new header > 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 I sort of reviewed the committed version. Thanks for doing such a large reorganization. Bruce To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020822173652.P2721-100000>