Ignore:
Timestamp:
2018-06-15T09:37:00Z (6 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1ae9c07
Parents:
3b1cc8d
git-author:
Jiri Svoboda <jiri@…> (2018-06-14 21:34:51)
git-committer:
Jiri Svoboda <jiri@…> (2018-06-15 09:37:00)
Message:

The headers malloc.h, stdarg.h, stddef.h and stdbool.h should just pass through to libc.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/include/posix/stdarg.h

    r3b1cc8d re6bab27b  
    3434#define POSIX_STDARG_H_
    3535
    36 typedef __builtin_va_list va_list;
    37 
    38 #define va_start(ap, last)  __builtin_va_start(ap, last)
    39 #define va_arg(ap, type)    __builtin_va_arg(ap, type)
    40 #define va_end(ap)          __builtin_va_end(ap)
    41 #define va_copy(dst, src)   __builtin_va_copy(dst, src)
     36/*
     37 * Just a pass-through to libc stdarg.
     38 */
     39#include "libc/stdarg.h"
    4240
    4341#endif
Note: See TracChangeset for help on using the changeset viewer.