File: pin.c

package info (click to toggle)
bow 19991122-4
  • links: PTS
  • area: main
  • in suites: woody
  • size: 2,544 kB
  • ctags: 2,987
  • sloc: ansic: 38,660; lisp: 1,072; makefile: 594; perl: 492; yacc: 149; sh: 91
file content (8 lines) | stat: -rw-r--r-- 299 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
/* Declaration of program_invocation_name and program_invocation_short_name
   for those libc's that don't already have it.  These variable are needed
   by the argp_ functions. */

#if !HAVE_PROGRAM_INVOCATION_NAME
char *program_invocation_short_name = 0;
char *program_invocation_name = 0;
#endif