revert between 56095 -> 55830 in arch
[AROS.git] / compiler / alib / systemtags.c
blob813c612ca8f81197aa1f9de1f6529e4e2050b7c8
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Varargs version of dos.library/SystemTagList()
6 Lang: english
7 */
9 #define AROS_TAGRETURNTYPE LONG
10 #include <utility/tagitem.h>
12 /*****************************************************************************
14 NAME */
15 #define NO_INLINE_STDARG /* turn off inline def */
16 #include <proto/dos.h>
18 LONG SystemTags (
20 /* SYNOPSIS */
21 STRPTR command,
22 Tag tag1,
23 ...)
25 /* FUNCTION
26 This is the varargs version of dos.library/SystemTagList().
27 For information see dos.library/SystemTagList().
29 INPUTS
31 RESULT
33 NOTES
35 EXAMPLE
37 BUGS
39 SEE ALSO
40 dos.library/SystemTagList()
42 INTERNALS
44 HISTORY
46 *****************************************************************************/
48 AROS_SLOWSTACKTAGS_PRE(tag1)
49 retval = SystemTagList (command, AROS_SLOWSTACKTAGS_ARG(tag1));
50 AROS_SLOWSTACKTAGS_POST
51 } /* SystemTags */