X-Git-Url: https://git.cameronkatri.com/mandoc.git/blobdiff_plain/5443e722cb3c8fea6f1ebfb4ea0725aa154a3214..e3f5a8b682834250b701507005165a1355655312:/term_ps.c diff --git a/term_ps.c b/term_ps.c index d07b71a1..f3b77766 100644 --- a/term_ps.c +++ b/term_ps.c @@ -1,4 +1,4 @@ -/* $Id: term_ps.c,v 1.41 2010/08/06 16:07:35 kristaps Exp $ */ +/* $Id: term_ps.c,v 1.44 2010/09/04 20:18:53 kristaps Exp $ */ /* * Copyright (c) 2010 Kristaps Dzonsons * @@ -18,7 +18,7 @@ #include "config.h" #endif -#include +#include #include #include @@ -29,6 +29,7 @@ #include #include +#include "mandoc.h" #include "out.h" #include "main.h" #include "term.h" @@ -371,7 +372,7 @@ ps_growbuf(struct termp *p, size_t sz) if (NULL == p->engine.ps.psmarg) { perror(NULL); - exit(EXIT_FAILURE); + exit((int)MANDOCLEVEL_SYSERR); } } @@ -582,6 +583,7 @@ ps_putchar(struct termp *p, char c) /* See ps_printf(). */ if ( ! (PS_MARGINS & p->engine.ps.flags)) { + /* LINTED */ putchar(c); p->engine.ps.pdfbytes++; return; @@ -608,7 +610,7 @@ pdf_obj(struct termp *p, size_t obj) p->engine.ps.pdfobjsz * sizeof(size_t)); if (NULL == p->engine.ps.pdfobjs) { perror(NULL); - exit(EXIT_FAILURE); + exit((int)MANDOCLEVEL_SYSERR); } }