nohelp.c 385 B

12345678910111213141516
  1. /*
  2. * nohelp.c: implement the has_embedded_chm() function for
  3. * applications that have no help file at all, so that buildinfo.c's
  4. * buildinfo string knows not to talk meaninglessly about whether the
  5. * nonexistent help file is present.
  6. */
  7. #include <stdio.h>
  8. #include <stdlib.h>
  9. #include <string.h>
  10. #include <assert.h>
  11. #include "putty.h"
  12. int has_embedded_chm(void) { return -1; }