v86/tests/kvm-unit-tests/lib/auxinfo.h
2020-07-21 20:10:11 -05:00

14 lines
309 B
C

/*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU Library General Public License version 2.
*/
#ifndef _AUXINFO_H_
#define _AUXINFO_H_
struct auxinfo {
const char *progname;
};
/* No extern! Define a common symbol. */
struct auxinfo auxinfo;
#endif