mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-07 11:48:30 +00:00
Remove some includes
This commit is contained in:
parent
75832f7379
commit
6bb9ce553e
30 changed files with 52 additions and 118 deletions
|
@ -1,8 +1,6 @@
|
|||
#ifndef COSMOPOLITAN_TOOL_BUILD_LIB_IOVS_H_
|
||||
#define COSMOPOLITAN_TOOL_BUILD_LIB_IOVS_H_
|
||||
#include "libc/calls/struct/iovec.h"
|
||||
#include "libc/macros.internal.h"
|
||||
#include "libc/mem/mem.h"
|
||||
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
||||
COSMOPOLITAN_C_START_
|
||||
|
||||
|
@ -12,20 +10,10 @@ struct Iovs {
|
|||
struct iovec init[2];
|
||||
};
|
||||
|
||||
void InitIovs(struct Iovs *);
|
||||
void FreeIovs(struct Iovs *);
|
||||
int AppendIovs(struct Iovs *, void *, size_t);
|
||||
|
||||
forceinline void InitIovs(struct Iovs *ib) {
|
||||
ib->p = ib->init;
|
||||
ib->i = 0;
|
||||
ib->n = ARRAYLEN(ib->init);
|
||||
}
|
||||
|
||||
forceinline void FreeIovs(struct Iovs *ib) {
|
||||
if (ib->p != ib->init) {
|
||||
free(ib->p);
|
||||
}
|
||||
}
|
||||
|
||||
COSMOPOLITAN_C_END_
|
||||
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
||||
#endif /* COSMOPOLITAN_TOOL_BUILD_LIB_IOVS_H_ */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue