mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
Remove extern keyword from function signatures in header files. Function signatures in headers are already extern implicitly. Reviewed-by: Steffen Eiden <seiden@linux.ibm.com> Signed-off-by: Mete Durlu <meted@linux.ibm.com> Signed-off-by: Steffen Eiden <seiden@linux.ibm.com>
23 lines
517 B
C
23 lines
517 B
C
/*
|
|
* hyptop - Show hypervisor performance data on System z
|
|
*
|
|
* Command line parsing
|
|
*
|
|
* Copyright IBM Corp. 2010, 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.
|
|
*/
|
|
|
|
#ifndef OPTS_H
|
|
#define OPTS_H
|
|
|
|
#include "hyptop.h"
|
|
|
|
void opts_parse(int argc, char *argv[]);
|
|
void opts_iterations_next(void);
|
|
int opts_sys_specified(struct hyptop_win *win, const char *sys_name);
|
|
void opt_verify_systems(void);
|
|
|
|
#endif /* OPTS_H */
|