Mount block file on OSX

It's a bit tricky:
hdiutil attach -imagekey diskimage-class=CRawDiskImage -nomount filename

After that you can mount the disk device as usually:
mount -t ntfs /dev/diskn /mnt
(where n is the id of the disk device you got from the first command)

P.S.: note that this works only for disk images (as in disk partitions, etc.), it does not work for CD images created from audio CDs.