commit | 97a5e5f2dd40eff09cb650c91c21f680b6d4206a | [log] [tgz] |
---|---|---|
author | rsc <devnull@localhost> | Sun Nov 23 18:25:35 2003 +0000 |
committer | rsc <devnull@localhost> | Sun Nov 23 18:25:35 2003 +0000 |
tree | 1a5b4768a225e33683b1b8562b9dfa9f8d14e176 | |
parent | 9e37bb03b38a732af1897289b2f519dbd74cd371 [diff] [blame] |
new files
diff --git a/include/bin.h b/include/bin.h new file mode 100644 index 0000000..6b9f2bd --- /dev/null +++ b/include/bin.h
@@ -0,0 +1,13 @@ +/* +#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 **);