mirror of https://git.musl-libc.org/git/musl
21 changed files with 166 additions and 1 deletions
@ -1,9 +1,17 @@ |
|||
#ifndef _ALLOCA_H |
|||
#define _ALLOCA_H |
|||
|
|||
#ifdef __cplusplus |
|||
extern "C" { |
|||
#endif |
|||
|
|||
#define __NEED_size_t |
|||
#include <bits/alltypes.h> |
|||
|
|||
void *alloca(size_t); |
|||
|
|||
#ifdef __cplusplus |
|||
} |
|||
#endif |
|||
|
|||
#endif |
|||
|
|||
@ -1,9 +1,17 @@ |
|||
#ifndef _SYS_SYSCTL_H |
|||
#define _SYS_SYSCTL_H |
|||
|
|||
#ifdef __cplusplus |
|||
extern "C" { |
|||
#endif |
|||
|
|||
#define __NEED_size_t |
|||
#include <bits/alltypes.h> |
|||
|
|||
int sysctl (int *, int, void *, size_t *, void *, size_t); |
|||
|
|||
#ifdef __cplusplus |
|||
} |
|||
#endif |
|||
|
|||
#endif |
|||
|
|||
Loading…
Reference in new issue