A buffer variable wasn't dereferenced in two similar comparisons in ResList
[AROS.git] / compiler / alib / arosinquire.c
blob15b53d0ce08d5e8d71ac4c270a302b78600f4402
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Retrieve information about the OS
6 Lang: english
7 */
8 #define AROS_TAGRETURNTYPE ULONG
9 #include <aros/arosbase.h>
10 #include "alib_intern.h"
11 #include <utility/tagitem.h>
13 extern struct Library * ArosBase;
15 /*****************************************************************************
17 NAME */
18 #define NO_INLINE_STDARG /* turn off inline def */
19 #include <proto/aros.h>
21 ULONG ArosInquire(
23 /* SYNOPSIS */
24 ULONG tag1,
25 ...)
27 /* FUNCTION
29 INPUTS
31 RESULT
33 NOTES
35 EXAMPLE
37 BUGS
39 SEE ALSO
40 aros.library/ArosInquireA()
42 INTERNALS
44 HISTORY
46 *****************************************************************************/
48 AROS_SLOWSTACKTAGS_PRE(tag1)
50 retval = ArosInquireA(AROS_SLOWSTACKTAGS_ARG(tag1));
52 AROS_SLOWSTACKTAGS_POST
53 } /* ArosInquire */