diff options
author | Taru Karttunen <taruti@taruti.net> | 2011-03-30 16:47:56 +0300 |
---|---|---|
committer | Taru Karttunen <taruti@taruti.net> | 2011-03-30 16:47:56 +0300 |
commit | c558a99e0be506a9abdf677f0ca4490644e05fc1 (patch) | |
tree | 17aef678ad05a32ef96ce8385703cb3fe089a5c7 /sys/include/bin.h | |
parent | e5888a1ffdae813d7575f5fb02275c6bb07e5199 (diff) |
Import sources from 2011-03-30 iso image - sys/include
Diffstat (limited to 'sys/include/bin.h')
-rwxr-xr-x | sys/include/bin.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sys/include/bin.h b/sys/include/bin.h new file mode 100755 index 000000000..73239d3df --- /dev/null +++ b/sys/include/bin.h @@ -0,0 +1,10 @@ +#pragma lib "libbin.a" +#pragma src "/sys/src/libbin" + +typedef struct Bin Bin; + +#pragma incomplete Bin + +void *binalloc(Bin **, ulong size, int zero); +void *bingrow(Bin **, void *op, ulong osize, ulong size, int zero); +void binfree(Bin **); |