Files
android_bootable_recovery/libblkid/src/superblocks/refs.c
T
bigbiff 7b4c7a681c Update blkid to 2.25.0
Break libblkid into 4 libraries: libblkid, libuuid, libutil-linux and libfdisk.

This should help in later patch updates.

Change-Id: I680d9a7feb031e5c29a603e9c58aff4b65826262
2015-01-05 04:38:42 +01:00

27 lines
461 B
C

/*
* Copyright (C) 2013 Karel Zak <kzak@redhat.com>
*
* This file may be redistributed under the terms of the
* GNU Lesser General Public License.
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <inttypes.h>
#include "superblocks.h"
const struct blkid_idinfo refs_idinfo =
{
.name = "ReFS",
.usage = BLKID_USAGE_FILESYSTEM,
.magics =
{
{ .magic = "\000\000\000ReFS\000", .len = 8 },
{ NULL }
}
};