diff options
author | Roland McGrath <roland@gnu.org> | 2001-09-28 06:12:38 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2001-09-28 06:12:38 +0000 |
commit | 882eb73da8c0da8093fe69407917d9e959b62dd1 (patch) | |
tree | b484c75ab9093f8b173c1ca9d23d89fa52170d17 | |
parent | 6dadd152bfcea4aaac0a26592a08c5d489b1cac2 (diff) |
2001-09-27 Roland McGrath <roland@frob.com>
* nbd.c: New file.
* Makefile (SRCS): Add it.
* store.h (store_nbd_open, _store_nbd_create): Declare them.
* std.c (store_std_classes): Add store_nbd_class.
-rw-r--r-- | libstore/std.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libstore/std.c b/libstore/std.c index 1b32229f..4f82c380 100644 --- a/libstore/std.c +++ b/libstore/std.c @@ -28,8 +28,11 @@ store_std_classes[] = &store_part_class, #endif &store_file_class, - &store_zero_class, &store_task_class, &store_ileave_class, - &store_concat_class, &store_remap_class, &store_query_class, + &store_zero_class, + &store_task_class, + &store_nbd_class, + &store_ileave_class, &store_concat_class, &store_remap_class, + &store_query_class, &store_copy_class, &store_gunzip_class, &store_bunzip2_class, &store_typed_open_class, 0 |