X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=cil-tools%2Fext3.c;h=c2267e475d8c84ec132593ecdf5c54c840ca4eb5;hb=93de329b187dc323d8179f4ddda71d9a3639fe2e;hp=1d8672f657b5d10b902bb96936236673c848d9a3;hpb=7005213600b46c113e831e76709c15518b35ed88;p=ocaml-bitstring.git diff --git a/cil-tools/ext3.c b/cil-tools/ext3.c index 1d8672f..c2267e4 100644 --- a/cil-tools/ext3.c +++ b/cil-tools/ext3.c @@ -1,10 +1,10 @@ /* This is an example import file, showing how to import the ext3 * superblock automatically from Linux header files. * - * Use: bitmatch-import-c ext3.c > ext3.bmpp + * Use: bitstring-import-c ext3.c > ext3.bmpp * * Tip: Add the --debug flag to that command line to see what's going on. - * Also use bitmatch-objinfo to examine the bmpp file. + * Also use bitstring-objinfo to examine the bmpp file. */ /* These are required by Linux in order to get the little/big-endian @@ -21,6 +21,6 @@ #include /* This tells the importer program what structures and constants to import. */ -//typedef struct ext3_super_block BITMATCH_IMPORT(ext3_super_block); -typedef struct ext2_super_block BITMATCH_IMPORT(ext3_super_block); -BITMATCH_CONSTANT_INT32 (ext3_super_magic, EXT3_SUPER_MAGIC); +//typedef struct ext3_super_block BITSTRING_IMPORT(ext3_super_block); +typedef struct ext2_super_block BITSTRING_IMPORT(ext3_super_block); +BITSTRING_CONSTANT_INT32 (ext3_super_magic, EXT3_SUPER_MAGIC);