auxinfo.h 309 B

12345678910111213
  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. /* No extern! Define a common symbol. */
  11. struct auxinfo auxinfo;
  12. #endif