mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
Remove all the code just pvattest-C used from libpv. z(get)dump is the only user as of now. Acked-by: Marc Hartmayer <mhartmay@linux.ibm.com> Signed-off-by: Steffen Eiden <seiden@linux.ibm.com>
20 lines
444 B
C
20 lines
444 B
C
/*
|
|
* Libpv common definitions.
|
|
*
|
|
* Copyright IBM Corp. 2022
|
|
*
|
|
* 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 LIBPV_COMMON_H
|
|
#define LIBPV_COMMON_H
|
|
|
|
/* must be included before any (other) glib header to verify that
|
|
* the glib version is supported
|
|
*/
|
|
#include "libpv/glib-helper.h"
|
|
#include <glib/gi18n.h>
|
|
|
|
#endif /* LIBPV_COMMON_H */
|