From gstein@locus.apache.org Wed Dec 6 19:47:15 2000 Return-Path: Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 15984 invoked by uid 1094); 6 Dec 2000 19:47:15 -0000 Date: 6 Dec 2000 19:47:15 -0000 Message-ID: <20001206194715.15979.qmail@locus.apache.org> From: gstein@locus.apache.org To: apr-cvs@apache.org Subject: cvs commit: apr/include/arch/unix misc.h gstein 00/12/06 11:47:14 Modified: include/arch/unix misc.h Log: toss datastruct. no longer used. Revision Changes Path 1.23 +10 -13 apr/include/arch/unix/misc.h Index: misc.h =================================================================== RCS file: /home/cvs/apr/include/arch/unix/misc.h,v retrieving revision 1.22 retrieving revision 1.23 diff -u -u -r1.22 -r1.23 --- misc.h 2000/08/06 06:07:16 1.22 +++ misc.h 2000/12/06 19:47:13 1.23 @@ -64,31 +64,28 @@ #include "apr_file_io.h" #include "apr_errno.h" #include "apr_getopt.h" -#ifdef HAVE_STDLIB_H -#include -#endif + #if APR_HAVE_STDIO_H #include #endif -#ifdef HAVE_STRING_H -#include -#endif #if APR_HAVE_SIGNAL_H #include #endif #if APR_HAVE_PTHREAD_H #include #endif + +/* ### create APR_HAVE_* macros for these? */ +#ifdef HAVE_STDLIB_H +#include +#endif +#ifdef HAVE_STRING_H +#include +#endif + #ifdef BEOS #include #endif - -typedef struct datastruct { - const void *data; - const char *key; - struct datastruct *next; - struct datastruct *prev; -} datastruct; struct apr_other_child_rec_t { struct apr_other_child_rec_t *next;