mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-15 11:20:03 +00:00
14 lines
265 B
C
14 lines
265 B
C
|
/*
|
||
|
#pragma lib "libbin.a"
|
||
|
#pragma src "/sys/src/libbin"
|
||
|
*/
|
||
|
|
||
|
#ifndef _HAVE_BIN
|
||
|
typedef struct Bin Bin;
|
||
|
#define _HAVE_BIN
|
||
|
#endif
|
||
|
|
||
|
void *binalloc(Bin **, ulong size, int zero);
|
||
|
void *bingrow(Bin **, void *op, ulong osize, ulong size, int zero);
|
||
|
void binfree(Bin **);
|