Files
s390-tools/zdump/zgetdump.h
Alexander Egorenkov d371ba0db8 zdump: Cleanup zgetdump.h C header
Separate the definition of a struct from the declaration of a global
variable of the type. To improve readability.

Signed-off-by: Alexander Egorenkov <egorenar@linux.ibm.com>
Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
2021-11-10 15:12:10 +01:00

27 lines
477 B
C

/*
* zgetdump - Tool for copying and converting System z dumps
*
* Copyright IBM Corp. 2001, 2018
*
* s390-tools is free software; you can redistribute it and/or modify
* it under the terms of the MIT license. See LICENSE for details.
*/
#ifndef ZGETDUMP_H
#define ZGETDUMP_H
#include "zg.h"
#include "opts.h"
/*
* zgetdump globals
*/
struct zgetdump_globals {
struct zg_fh *fh;
struct options opts;
};
extern struct zgetdump_globals g;
#endif /* ZGETDUMP_H */