mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-24 12:09:58 +00:00
7ecdc94c40
Loosely based on 076b35b5a5
.
Suggested-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20180625124238.25339-2-f4bug@amsat.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
21 lines
476 B
C
21 lines
476 B
C
/*
|
|
* IEC binary prefixes definitions
|
|
*
|
|
* Copyright (C) 2015 Nikunj A Dadhania, IBM Corporation
|
|
* Copyright (C) 2018 Philippe Mathieu-Daudé <f4bug@amsat.org>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef QEMU_UNITS_H
|
|
#define QEMU_UNITS_H
|
|
|
|
#define KiB (INT64_C(1) << 10)
|
|
#define MiB (INT64_C(1) << 20)
|
|
#define GiB (INT64_C(1) << 30)
|
|
#define TiB (INT64_C(1) << 40)
|
|
#define PiB (INT64_C(1) << 50)
|
|
#define EiB (INT64_C(1) << 60)
|
|
|
|
#endif
|