legal.h 637 B

1234567891011121314
  1. /*
  2. * Copyright (c) 1995 Colin Plumb. All rights reserved.
  3. * For licensing and other legal details, see the file legal.c.
  4. *
  5. * We want the copyright string to be accessable to the unix strings command
  6. * in the final linked binary, and we don't want the linker to remove it if
  7. * it's not referenced, so we do that by using the volatile qualifier.
  8. *
  9. * ANSI C standard, section 3.5.3: "An object that has volatile-qualified
  10. * type may be modified in ways unknown to the implementation or have
  11. * other unknown side effects." Yes, we can't expect a compiler to
  12. * understand law...
  13. */
  14. extern volatile const char bnCopyright[];