Ignore:
Timestamp:
Jun 7, 2019, 10:13:19 PM (5 years ago)
Author:
coas-nagasima
Message:

ファイルヘッダーの更新

Location:
asp3_tinet_ecnl_rx/trunk/musl-1.1.18/include
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • asp3_tinet_ecnl_rx/trunk/musl-1.1.18/include/bits/alltypes.h

    r387 r400  
    1 #ifdef _MSC_VER
    2 #define __builtin_va_list char *
    3 #define __NEED_va_list
    4 #define restrict __restrict
    5 #endif
    6 
    71#define _Addr int
    82#define _Int64 long long
     
    4640
    4741#if defined(__NEED_time_t) && !defined(__DEFINED_time_t)
    48 #if defined(_MSC_VER) || defined(__c2__)
    49 typedef long long time_t;
    50 #else
    5142typedef long time_t;
    52 #endif
    5343#define __DEFINED_time_t
    5444#endif
  • asp3_tinet_ecnl_rx/trunk/musl-1.1.18/include/bits/errno.h

    r337 r400  
    1 #ifdef _INC_ERRNO
    2 #undef EADDRINUSE
    3 #undef EADDRNOTAVAIL
    4 #undef EAFNOSUPPORT
    5 #undef EALREADY
    6 #undef EBADMSG
    7 #undef ECANCELED
    8 #undef ECONNABORTED
    9 #undef ECONNREFUSED
    10 #undef ECONNRESET
    11 #undef EDEADLK
    12 #undef EDESTADDRREQ
    13 #undef EHOSTUNREACH
    14 #undef EIDRM
    15 #undef EILSEQ
    16 #undef EINPROGRESS
    17 #undef EISCONN
    18 #undef ELOOP
    19 #undef EMSGSIZE
    20 #undef ENAMETOOLONG
    21 #undef ENETDOWN
    22 #undef ENETRESET
    23 #undef ENETUNREACH
    24 #undef ENOBUFS
    25 #undef ENODATA
    26 #undef ENOLCK
    27 #undef ENOLINK
    28 #undef ENOMSG
    29 #undef ENOPROTOOPT
    30 #undef ENOSR
    31 #undef ENOSTR
    32 #undef ENOSYS
    33 #undef ENOTCONN
    34 #undef ENOTEMPTY
    35 #undef ENOTRECOVERABLE
    36 #undef ENOTSOCK
    37 #undef ENOTSUP
    38 #undef EOPNOTSUPP
    39 #undef EOVERFLOW
    40 #undef EOWNERDEAD
    41 #undef EPROTO
    42 #undef EPROTONOSUPPORT
    43 #undef EPROTOTYPE
    44 #undef ETIME
    45 #undef ETIMEDOUT
    46 #undef ETXTBSY
    47 #undef EWOULDBLOCK
    48 #endif
    49 
    501#define EPERM            1
    512#define ENOENT           2
  • asp3_tinet_ecnl_rx/trunk/musl-1.1.18/include/setjmp.h

    r337 r400  
    3333_Noreturn void longjmp (jmp_buf, int);
    3434
    35 #if !defined(_MSC_VER) && !defined(__c2__)
    36 #define setjmp __builtin_setjmp
    37 #else
    3835#define setjmp setjmp
    39 #endif
    4036
    4137#ifdef __cplusplus
  • asp3_tinet_ecnl_rx/trunk/musl-1.1.18/include/stdarg.h

    r364 r400  
    1010#include <bits/alltypes.h>
    1111
    12 #if !defined(_MSC_VER) && !defined(__c2__)
    13 
    1412#define va_start(v,l)   __builtin_va_start(v,l)
    1513#define va_end(v)       __builtin_va_end(v)
    1614#define va_arg(v,l)     __builtin_va_arg(v,l)
    1715#define va_copy(d,s)    __builtin_va_copy(d,s)
    18 
    19 #else
    20 
    21 #define _INTSIZEOF(n)          ((sizeof(n) + sizeof(int) - 1) & ~(sizeof(int) - 1))
    22 
    23 #define __crt_va_start(ap, v)   ((void)(ap = (va_list)&(v) + _INTSIZEOF(v)))
    24 #define __crt_va_arg(ap, t)     (*(t*)((ap += _INTSIZEOF(t)) - _INTSIZEOF(t)))
    25 #define __crt_va_end(ap)        ((void)(ap = (va_list)0))
    26 
    27 #define va_start __crt_va_start
    28 #define va_arg   __crt_va_arg
    29 #define va_end   __crt_va_end
    30 #define va_copy(destination, source) ((destination) = (source))
    31 
    32 #endif
    3316
    3417#ifdef __cplusplus
  • asp3_tinet_ecnl_rx/trunk/musl-1.1.18/include/stdio.h

    r337 r400  
    2222#include <bits/alltypes.h>
    2323
    24 #ifndef _UCRT
    2524#ifdef __cplusplus
    2625#define NULL 0L
    2726#else
    2827#define NULL ((void*)0)
    29 #endif
    3028#endif
    3129
Note: See TracChangeset for help on using the changeset viewer.