Subversion Repositories HelenOS

Rev

Rev 1787 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1787 Rev 1866
Line 24... Line 24...
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
29
 /** @addtogroup libcia32
29
/** @addtogroup libcia32
30
 * @{
30
 * @{
31
 */
31
 */
32
/** @file
32
/** @file
33
 */
33
 */
34
 
34
 
35
 
-
 
36
/*
35
/*
37
 * Variable argument list manipulation macros
36
 * Variable argument list manipulation macros
38
 * for architectures using stack to pass arguments.
37
 * for architectures using stack to pass arguments.
39
 */
38
 */
40
 
39
 
41
#ifndef __LIBC_STACKARG_H__
40
#ifndef LIBC_ia32_STACKARG_H_
42
#define __LIBC_STACKARG_H__
41
#define LIBC_ia32_STACKARG_H_
43
 
42
 
44
#include <types.h>
43
#include <types.h>
45
 
44
 
46
/* dont allow to define it second time in stdarg.h */
45
/* dont allow to define it second time in stdarg.h */
47
#define __VARARGS_DEFINED
46
#define __VARARGS_DEFINED
Line 61... Line 60...
61
#define va_end(ap)
60
#define va_end(ap)
62
 
61
 
63
 
62
 
64
#endif
63
#endif
65
 
64
 
66
 
-
 
67
 /** @}
65
/** @}
68
 */
66
 */
69
 
-
 
70
 
-