Changeset 369


Ignore:
Timestamp:
Jul 14, 2003, 11:30:23 AM (22 years ago)
Author:
bird
Message:

#427: Corrected va_list.

Location:
trunk/src/emx/include
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/include/386/stdarg.h

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r368 r369  
    4545#include <sys/_types.h>
    4646
    47 #ifndef _VA_LIST_DECLARED
     47#if !defined(_VA_LIST_DECLARED) && !defined(_VA_LIST) /* bird: emx */
    4848#define _VA_LIST_DECLARED
    4949#define _VA_LIST                        /* bird: emx */
  • trunk/src/emx/include/stdio.h

    • Property cvs2svn:cvs-rev changed from 1.4 to 1.5
    r368 r369  
    66#if defined (__cplusplus)
    77extern "C" {
     8#endif
     9
     10#include <sys/cdefs.h>
     11#include <sys/_types.h>
     12
     13#if !defined(_VA_LIST_DECLARED) && !defined(_VA_LIST) /* bird: emx */
     14#define _VA_LIST_DECLARED
     15#define _VA_LIST                        /* bird: emx */
     16typedef __va_list       va_list;
    817#endif
    918
     
    110119#endif
    111120
    112 #if !defined (_VA_LIST)
    113 #define _VA_LIST
    114 typedef __builtin_va_list va_list;
    115 #endif
    116121
    117122void clearerr (FILE *);
Note: See TracChangeset for help on using the changeset viewer.