mirror of
https://git.proxmox.com/git/wasi-libc
synced 2025-08-25 09:13:42 +00:00

This incoporates pieces from musl-libc, cloudlibc, cloudabi, libpreopen, and dlmalloc, as well as a significant amount of new code.
18 lines
219 B
C
18 lines
219 B
C
#ifndef _SYS_IO_H
|
|
#define _SYS_IO_H
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <features.h>
|
|
|
|
#include <bits/io.h>
|
|
|
|
int iopl(int);
|
|
int ioperm(unsigned long, unsigned long, int);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|