1 /* 2 * This code is free software; you can redistribute it and/or modify it 3 * under the terms of the GNU Library General Public License version 2. 4 */ 5 #ifndef _AUXINFO_H_ 6 #define _AUXINFO_H_ 7 struct auxinfo { 8 const char *progname; 9 }; 10 11 /* No extern! Define a common symbol. */ 12 struct auxinfo auxinfo; 13 #endif 14