home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Tools / linuxdoc-sgml-1.1 / sgmls-1.1 / appl.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-05-03  |  508 b   |  34 lines

  1. /* appl.h */
  2.  
  3. enum {
  4.      E_NOMEM = 1,
  5.      E_DOC,
  6.      E_EXEC,
  7.      E_FORK,
  8.      E_WAIT,
  9.      E_SIGNAL,
  10.      E_OPEN,
  11.      E_CAPBOTCH,
  12.      E_SUBDOC
  13. };
  14.  
  15. VOID process_document P((int));
  16. VOID output_conforming P((void));
  17.  
  18. UNIV xmalloc P((UNS));
  19. UNIV xrealloc P((UNIV, UNS));
  20. VOID appl_error VP((int, ...));
  21.  
  22. #ifdef SUPPORT_SUBDOC
  23. int run_process P((char **));
  24. char **make_argv P((UNIV));
  25. VOID get_subcaps P((void));
  26. #endif
  27.  
  28. #ifdef SUPPORT_SUBDOC
  29. extern int suberr;
  30. #endif
  31.  
  32. extern int suppsw;
  33. extern int locsw;
  34.