- (bal) Cleaned out bsd-snprintf.c. VARARGS have been banished and
I did a base KNF over the whe whole file to make it more acceptable. (backed out of original patch and removed it from ChangeLog) This has been a long time coming. If we decide that we need VARARGS support we should do it at a higher level, since no where else do we support VARARGS in the code base.
This commit is contained in:
parent
d8ab0d4a85
commit
6c92dab9a1
|
@ -1,7 +1,8 @@
|
|||
20010213
|
||||
- (bal) added NeXT work around for bsd-snprintf.c in bsd-nextstep.h.
|
||||
- (bal) added TODO item to clean up and sort out 'varargs' from 'stdargs'
|
||||
- (djm) Only test -S potential EGD sockets if they exist and are readable.
|
||||
- (bal) Cleaned out bsd-snprintf.c. VARARGS have been banished and
|
||||
I did a base KNF over the whe whole file to make it more acceptable.
|
||||
(backed out of original patch and removed it from ChangeLog)
|
||||
|
||||
20010212
|
||||
- (djm) Update Redhat specfile to allow --define "skip_x11_askpass 1",
|
||||
|
@ -3909,4 +3910,4 @@
|
|||
- Wrote replacements for strlcpy and mkdtemp
|
||||
- Released 1.0pre1
|
||||
|
||||
$Id: ChangeLog,v 1.751 2001/02/13 01:11:17 djm Exp $
|
||||
$Id: ChangeLog,v 1.752 2001/02/13 02:18:50 mouring Exp $
|
||||
|
|
5
TODO
5
TODO
|
@ -29,9 +29,6 @@ Programming:
|
|||
- Verify that It's safe to enable NGROUPS_MAX under NeXTStep for
|
||||
groupaccess features. (mouring@eviladmin.org)
|
||||
|
||||
- Clean up bsd-snprintf.c and sort out how to detect between VARARGS
|
||||
and STDARGS for better portablity (mouring@eviladmin.org)
|
||||
|
||||
Documentation:
|
||||
- More and better
|
||||
|
||||
|
@ -65,4 +62,4 @@ Packaging:
|
|||
- HP/UX: Provide DEPOT package scripts.
|
||||
(gilbert.r.loomis@saic.com)
|
||||
|
||||
$Id: TODO,v 1.34 2001/02/12 15:57:18 mouring Exp $
|
||||
$Id: TODO,v 1.35 2001/02/13 02:18:50 mouring Exp $
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
/* $Id: bsd-nextstep.h,v 1.3 2001/02/12 15:57:18 mouring Exp $ */
|
||||
/* $Id: bsd-nextstep.h,v 1.4 2001/02/13 02:18:50 mouring Exp $ */
|
||||
|
||||
#ifndef _NEXT_POSIX_H
|
||||
#define _NEXT_POSIX_H
|
||||
|
@ -29,12 +29,6 @@
|
|||
#ifdef HAVE_NEXT
|
||||
#include <sys/dir.h>
|
||||
|
||||
/*
|
||||
* Temporary hack to let bsd-snprintf.c work. bsd-snprintf.c really
|
||||
* needs to be cleaned up.
|
||||
*/
|
||||
#define HAVE_STDARG_H 1
|
||||
|
||||
/* NeXT's readdir() is BSD (struct direct) not POSIX (struct dirent) */
|
||||
#define dirent direct
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue