version 1.41, 2010/08/06 16:07:35 |
version 1.43, 2010/08/26 13:00:59 |
|
|
#include "config.h" |
#include "config.h" |
#endif |
#endif |
|
|
#include <sys/param.h> |
#include <sys/types.h> |
|
|
#include <assert.h> |
#include <assert.h> |
#include <stdarg.h> |
#include <stdarg.h> |
|
|
#include <time.h> |
#include <time.h> |
#include <unistd.h> |
#include <unistd.h> |
|
|
|
#include "mandoc.h" |
#include "out.h" |
#include "out.h" |
#include "main.h" |
#include "main.h" |
#include "term.h" |
#include "term.h" |
Line 371 ps_growbuf(struct termp *p, size_t sz) |
|
Line 372 ps_growbuf(struct termp *p, size_t sz) |
|
|
|
if (NULL == p->engine.ps.psmarg) { |
if (NULL == p->engine.ps.psmarg) { |
perror(NULL); |
perror(NULL); |
exit(EXIT_FAILURE); |
exit(MANDOCLEVEL_SYSERR); |
} |
} |
} |
} |
|
|
Line 608 pdf_obj(struct termp *p, size_t obj) |
|
Line 609 pdf_obj(struct termp *p, size_t obj) |
|
p->engine.ps.pdfobjsz * sizeof(size_t)); |
p->engine.ps.pdfobjsz * sizeof(size_t)); |
if (NULL == p->engine.ps.pdfobjs) { |
if (NULL == p->engine.ps.pdfobjs) { |
perror(NULL); |
perror(NULL); |
exit(EXIT_FAILURE); |
exit(MANDOCLEVEL_SYSERR); |
} |
} |
} |
} |
|
|