Author: jorton Date: Wed Nov 17 04:33:02 2004 New Revision: 76122 Modified: apr/apr-util/trunk/misc/apr_queue.c Log: Avoid testing undefined symbols. No functional change. * apr-util/misc/apr_queue.c Include the header that defines the symbols we are testing. Submitted by: Julian Foad Modified: apr/apr-util/trunk/misc/apr_queue.c ============================================================================== --- apr/apr-util/trunk/misc/apr_queue.c (original) +++ apr/apr-util/trunk/misc/apr_queue.c Wed Nov 17 04:33:02 2004 @@ -12,6 +12,9 @@ * See the License for the specific language governing permissions and * limitations under the License. */ + +#include "apr.h" + #if APR_HAVE_STDIO_H #include #endif