=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/term_ps.c,v retrieving revision 1.9 retrieving revision 1.10 diff -c -r1.9 -r1.10 *** src/usr.bin/mandoc/term_ps.c 2010/08/18 01:30:16 1.9 --- src/usr.bin/mandoc/term_ps.c 2010/08/20 00:53:35 1.10 *************** *** 1,4 **** ! /* $Id: term_ps.c,v 1.9 2010/08/18 01:30:16 schwarze Exp $ */ /* * Copyright (c) 2010 Kristaps Dzonsons * --- 1,4 ---- ! /* $Id: term_ps.c,v 1.10 2010/08/20 00:53:35 schwarze Exp $ */ /* * Copyright (c) 2010 Kristaps Dzonsons * *************** *** 29,34 **** --- 29,35 ---- #include #include + #include "mandoc.h" #include "out.h" #include "main.h" #include "term.h" *************** *** 371,377 **** if (NULL == p->engine.ps.psmarg) { perror(NULL); ! exit(EXIT_FAILURE); } } --- 372,378 ---- if (NULL == p->engine.ps.psmarg) { perror(NULL); ! exit(MANDOCLEVEL_SYSERR); } } *************** *** 608,614 **** p->engine.ps.pdfobjsz * sizeof(size_t)); if (NULL == p->engine.ps.pdfobjs) { perror(NULL); ! exit(EXIT_FAILURE); } } --- 609,615 ---- p->engine.ps.pdfobjsz * sizeof(size_t)); if (NULL == p->engine.ps.pdfobjs) { perror(NULL); ! exit(MANDOCLEVEL_SYSERR); } }