mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
Get rid of C headers which include everything. This is bad for testing and maintainability. C files should include only what they need and no more. Signed-off-by: Alexander Egorenkov <egorenar@linux.ibm.com> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
31 lines
620 B
C
31 lines
620 B
C
/*
|
|
* zgetdump - Tool for copying and converting System z dumps
|
|
*
|
|
* S390 multi-volume DASD dump tool
|
|
*
|
|
* Copyright IBM Corp. 2001, 2017
|
|
*
|
|
* s390-tools is free software; you can redistribute it and/or modify
|
|
* it under the terms of the MIT license. See LICENSE for details.
|
|
*/
|
|
|
|
#include "dt.h"
|
|
#include "df_s390.h"
|
|
|
|
/*
|
|
* Initialize s390 multi-volume dump tool (for -d option)
|
|
*/
|
|
static int dt_s390mv_init(void)
|
|
{
|
|
return dt_s390mv_init_gen(DUMP_NON_EXTENDED);
|
|
}
|
|
|
|
/*
|
|
* Dump Tool operations
|
|
*/
|
|
struct dt dt_s390mv = {
|
|
.desc = "Multi-volume DASD dump tool",
|
|
.init = dt_s390mv_init,
|
|
.info = dt_s390mv_info,
|
|
};
|